mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-29 23:44:46 +02:00
17 lines
271 B
PHP
17 lines
271 B
PHP
<?php
|
|
|
|
namespace App\Extensions\Illuminate\Database\Eloquent;
|
|
|
|
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
|
|
|
|
class Builder extends EloquentBuilder
|
|
{
|
|
/**
|
|
* Do nothing.
|
|
*/
|
|
public function search(): self
|
|
{
|
|
return $this;
|
|
}
|
|
}
|