fix csfixer warnings

This commit is contained in:
Mohit Panjwani
2022-01-11 16:54:15 +05:30
parent dcb3ddecb9
commit 22f6a48b5b
9 changed files with 2 additions and 10 deletions

View File

@ -48,7 +48,7 @@ class PaymentMethod extends Model
public function scopeWhereSearch($query, $search)
{
$query->where('name', 'LIKE', '%' . $search . '%');
$query->where('name', 'LIKE', '%'.$search.'%');
}
public function scopeApplyFilters($query, array $filters)