fix(php): resolve static calls through import aliases (#1545) (#1795)

Co-authored-by: Colby McHenry <colbymchenry@users.noreply.github.com>
This commit is contained in:
Colby Mchenry
2026-09-08 15:11:20 -05:00
committed by GitHub
co-authored by Colby McHenry
parent a961491cea
commit 040ba388da
7 changed files with 210 additions and 1 deletions
@@ -0,0 +1,9 @@
<?php
namespace App\Http\Controllers\Backend;
use App\Services\SettleService as Settle;
class SettleController extends Controller {
public function excel($stores, $startDay = null, $endDay = null, $id = null) {
return Settle::getSettlesToExcel($stores, request()->_SELECTED, [$startDay, $endDay], $id);
}
}
@@ -0,0 +1,8 @@
<?php
namespace App\Repositories;
class SettleRepository {
public static function getSettlesToExcel($storeIds, $dayRange) {
return [];
}
}
@@ -0,0 +1,8 @@
<?php
namespace App\Services;
class SettleService {
public static function getSettlesToExcel($stores, $selected, $dayRange, $id) {
return [];
}
}