Case patch directory pathing

app was erroring out because classes in the upkeep directory could not
be found due to a case mix up where 'Upkeep' and 'UpKeep' were both
being used causing a path error because the actual directory is 'Upkeep.'
This commit is contained in:
ro 2024-08-30 16:14:15 -06:00
parent 2c8bd10391
commit 0e6d4bd2b4
No known key found for this signature in database
GPG key ID: 29B551CDBD4D3B50
2 changed files with 4 additions and 4 deletions

View file

@ -4,8 +4,8 @@ namespace App\Http\Controllers\API;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use App\Services\UpKeep\InitService;
use App\Services\UpKeep\ResetService;
use App\Services\Upkeep\InitService;
use App\Services\Upkeep\ResetService;
class InitAPIController extends Controller
{

View file

@ -10,8 +10,8 @@ use App\Services\Upkeep\MaintenanceService;
use App\Services\Assets\FileUploadService;
use App\Interfaces\MemberRepositoryInterface;
use App\Services\Data\SettingsService;
use App\Services\UpKeep\InitService;
use App\Services\UpKeep\ResetService;
use App\Services\Upkeep\InitService;
use App\Services\Upkeep\ResetService;
class RoutePostController extends Controller
{