FIX: adjusts in any locations

This commit is contained in:
lukibeg 2025-10-22 12:48:54 -03:00
parent c690c65924
commit b526f8700a
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<?php
namespace App\Controllers;
namespace App\api;
use Models\ReportsModel;
use Nyholm\Psr7\Response;

View File

@ -2,6 +2,6 @@
namespace Routes;
use App\Controllers\ReportController;
use App\api\ReportController;
$router->setRoute('GET', '/api/v1/reports', [ReportController::class, 'show']);