Test Setup Failed
Push — master ( 49daca...d9a06b )
by Chema
09:15
created

anonymous//gacela.php$0   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
dl 0
loc 7
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
use Gacela\Framework\Bootstrap\GacelaConfig;
6
use Gacela\Framework\Config\ConfigReader\EnvConfigReader;
7
8
return static function (GacelaConfig $config): void {
9
    $config->addAppConfig('config/.env*', 'config/.env.local.dist', EnvConfigReader::class);
10
};
11