phpstan errors fixing

This commit is contained in:
2025-03-10 16:53:53 +05:00
parent 11df811e0c
commit 3b83acf39c
8 changed files with 111 additions and 76 deletions

View File

@@ -4,6 +4,7 @@ namespace App\Repos\Payment;
use App\Models\Payment\OnlinePaymentHistory;
use App\Repos\Payment\Billing\HandlesBillingSyncing;
use App\Repos\Payment\Card\HandlesCardOrderPayments;
use App\Repos\Payment\Sber\HandlesSberPeyments;
use App\Repos\Payment\VisaMaster\HandlesVisaMasterPayments;
use Illuminate\Http\Request;
@@ -14,6 +15,7 @@ use Laravel\Nova\Makeable;
class OnlinePaymentRepo
{
use HandlesBillingSyncing;
use HandlesCardOrderPayments;
use HandlesSberPeyments;
use HandlesVisaMasterPayments;
use Makeable;