PHP code example of thuraaung2493 / laravel-config-types
1. Go to this page and download the library: Download thuraaung2493/laravel-config-types library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
thuraaung2493 / laravel-config-types example snippets
// Facades
use Thuraaung\ConfigTypes\Facades\Config
Config::string('app.name') // 'Laravel'
// Via Service Container
use Thuraaung\ConfigTypes\ConfigResolver;
class Example
{
public function __construct(
private readonly ConfigResolver $config,
) {}
public function test(): string
{
return $this->config->string('app.name');
}
}
$example = new Example();
$example->test() // 'Laravel'