mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 02:54:45 +02:00
19 lines
301 B
PHP
19 lines
301 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Extensions\Illuminate\Database\Eloquent;
|
|
|
|
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
|
|
|
|
class Builder extends EloquentBuilder
|
|
{
|
|
/**
|
|
* Do nothing.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function search()
|
|
{
|
|
return $this;
|
|
}
|
|
}
|