Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Nielsvanpach authored and github-actions[bot] committed Sep 23, 2024
1 parent edd9b1c commit fb28926
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/Filters/FiltersPartial.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,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
1 change: 0 additions & 1 deletion tests/FilterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
use Illuminate\Http\Request;
use Illuminate\Support\Carbon;
use Illuminate\Support\Facades\DB;

use Pest\Expectation;

use function PHPUnit\Framework\assertObjectHasProperty;
Expand Down
1 change: 0 additions & 1 deletion tests/SortTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
use Spatie\QueryBuilder\Sorts\Sort as SortInterface;
use Spatie\QueryBuilder\Sorts\SortsField;
use Spatie\QueryBuilder\Tests\Concerns\AssertsCollectionSorting;

use Spatie\QueryBuilder\Tests\TestClasses\Models\TestModel;

uses(AssertsCollectionSorting::class);
Expand Down

0 comments on commit fb28926

Please sign in to comment.