fix namespaces and references

This commit is contained in:
2026-07-13 18:47:08 +02:00
parent 661e2db8b1
commit 73eb3f92d0
23 changed files with 2687 additions and 128 deletions
+3 -2
View File
@@ -1,10 +1,11 @@
<?php
namespace Core;
namespace Api\Core;
class Router {
private $routes = [];
private $container;
public function __construct(\Core\Container $container) {
public function __construct(Container $container) {
$this->container = $container;
}