Skip to content

Commit

Permalink
Fixed code style
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna authored and github-actions[bot] committed Nov 27, 2024
1 parent 5620bae commit 5b8e93f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Filters/Types/Like.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

namespace Orchid\Filters\Types;

use Illuminate\Database\Eloquent\Builder;
use Orchid\Filters\BaseHttpEloquentFilter;
use Composer\InstalledVersions;
use Composer\Semver\VersionParser;
use Illuminate\Database\Eloquent\Builder;
use Orchid\Filters\BaseHttpEloquentFilter;

class Like extends BaseHttpEloquentFilter
{
Expand All @@ -20,6 +20,6 @@ public function run(Builder $builder): Builder
/**
* @deprecated logic for older Laravel versions
*/
return $builder->where($this->column, 'like', '%' . $this->getHttpValue() . '%');
return $builder->where($this->column, 'like', '%'.$this->getHttpValue().'%');
}
}

0 comments on commit 5b8e93f

Please sign in to comment.