[L6] Break search functionality without breaking the entire app

This commit is contained in:
Dane Everitt 2019-09-04 21:21:07 -07:00
parent c97461d602
commit 5b4a65a60c
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
6 changed files with 41 additions and 3 deletions

View file

@ -0,0 +1,18 @@
<?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;
}
}