$key = 'app.debug';
config(); // \TinyFramework\Core\Config
config($key); // return value or null
config($key, 'value'); // set key to value and return \TinyFramework\Core\Config
config()->get($key); // mixed|null
config()->set($key, $value); // \TinyFramework\Core\Config
File: config/example.php
<?php declare(strict_types=1);
return [
'test' => 1
];
Some other File
config('example.test'); // 1
config('example.test', 2); // \TinyFramework\Core\Config
config('example.test'); // 2