forked from projects/fipamo
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:
parent
2c8bd10391
commit
0e6d4bd2b4
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue