mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
fix csfixer warnings
This commit is contained in:
@ -3,7 +3,6 @@
|
||||
namespace Crater\Http\Controllers\V1\Customer\Estimate;
|
||||
|
||||
use Crater\Http\Controllers\Controller;
|
||||
use Crater\Http\Requests\CustomerEstimateStatusRequest;
|
||||
use Crater\Http\Resources\Customer\EstimateResource;
|
||||
use Crater\Models\Company;
|
||||
use Crater\Models\Estimate;
|
||||
|
||||
@ -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)
|
||||
|
||||
Reference in New Issue
Block a user