Commit Graph

6 Commits

Author SHA1 Message Date
Tim
f8d1c66934 Implement commands 2023-08-16 16:04:35 +02:00
Tim
1ee5c1c992 Add console 2023-08-16 14:33:21 +02:00
Tim
59200be680 Add doctrine and seperate out the renderer 2023-08-16 14:28:06 +02:00
Tim
9b8985640c Add appConfig to container
diff --git a/public/index.php b/public/index.php
index 78fef51..e15604b 100644
--- a/public/index.php
+++ b/public/index.php
@@ -8,8 +8,7 @@ error_reporting(E_ALL);

 use App\Kernel;

-require_once dirname(__DIR__).'/vendor/autoload.php';
+require_once dirname(__DIR__) . '/vendor/autoload.php';

-$kernel = new Kernel();
-
-$kernel();
\ No newline at end of file
+$kernel = new Kernel(__DIR__ . '/../app');
+$kernel->run();
\ No newline at end of file
diff --git a/src/AppConfig.php b/src/AppConfig.php
new file mode 100644
index 0000000..bcf0ee6
--- /dev/null
+++ b/src/AppConfig.php
@@ -0,0 +1,17 @@
+<?php
+
+namespace Ardent\Undercurrent;
+
+class AppConfig
+{
+    public function __construct(
+        private readonly string $rootPath,
+    )
+    {
+    }
+
+    public function getRootPath(): string
+    {
+        return $this->rootPath;
+    }
+}
\ No newline at end of file
diff --git a/src/Kernel/BaseKernel.php b/src/Kernel/BaseKernel.php
index 60164d8..c27f49a 100644
--- a/src/Kernel/BaseKernel.php
+++ b/src/Kernel/BaseKernel.php
@@ -2,6 +2,7 @@

 namespace Ardent\Undercurrent\Kernel;

+use Ardent\Undercurrent\AppConfig;
 use Ardent\Undercurrent\Container\ContainerInterface;
 use Ardent\Undercurrent\Container\GenericContainer;
 use Ardent\Undercurrent\Http\GenericRequest;
@@ -13,18 +14,26 @@ use Ardent\Undercurrent\Http\RouterInterface;
 use Ardent\Undercurrent\Http\StatusEnum;
 use Ardent\Undercurrent\Logger\LogContainer;
 use Ardent\Undercurrent\Logger\LoggerInterface;
-use Exception;

 class BaseKernel
 {
-    public function __invoke(): void
+    public function __construct(
+        private readonly string $rootDirectory,
+    )
     {
+    }
+
+    public function run(): void
+    {
+        $appConfig = new AppConfig($this->rootDirectory);
+
         $container = (new GenericContainer());
         $container
             ->alias(RouterInterface::class, GenericRouter::class)
             ->alias(ContainerInterface::class, GenericContainer::class)
             ->alias(LoggerInterface::class, LogContainer::class)
             ->add(GenericContainer::class, fn($container) => $container)
+            ->add(AppConfig::class, fn() => $appConfig)
             ->add(GenericRouter::class)
             ->add(LogContainer::class);
2023-08-15 02:16:12 +02:00
Tim
a55d1c3c2e Properly implement the router with config and interfaces
Expand the container with aliases and argument autowiring
2023-08-07 17:51:53 +02:00
Tim
68ccd37f07 Move public to make it compatible with symfony nginx files 2023-07-28 16:45:32 +02:00