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

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',
]);