Add key based genericConfig

This commit is contained in:
Tim
2023-08-15 21:21:24 +02:00
parent 18848e041f
commit 56e8caa26c
10 changed files with 43 additions and 9 deletions

View File

@ -9,4 +9,4 @@ foreach ($this->routes->getRoutes() as $route) {
$route->getMethod()
);
}
?>
?>

9
app/config.example.php Normal file
View File

@ -0,0 +1,9 @@
<?php
namespace App;
use Ardent\Undercurrent\Config\GenericConfig;
return new GenericConfig([
'key' => 'value',
]);