Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVanderbist authored and github-actions[bot] committed May 10, 2024
1 parent a749843 commit caa8467
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Filters/FiltersPartial.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace Spatie\QueryBuilder\Filters;

use Illuminate\Database\Eloquent\Builder;
use Illuminate\Support\Facades\DB;

/**
* @template TModelClass of \Illuminate\Database\Eloquent\Model
Expand Down Expand Up @@ -74,7 +73,7 @@ protected static function escapeLike(string $value): string
*/
protected static function maybeSpecifyEscapeChar(string $driver): string
{
if(!in_array($driver, ['sqlite','pgsql','sqlsrv'])){
if(! in_array($driver, ['sqlite','pgsql','sqlsrv'])) {
return '';
}

Expand Down

0 comments on commit caa8467

Please sign in to comment.