Total Complexity | 5 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Coverage | 85.71% |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | final class Gacela |
||
15 | { |
||
16 | /** |
||
17 | * Define the entry point of Gacela. |
||
18 | * |
||
19 | * @param null|SetupGacelaInterface|callable(GacelaConfig):void $configFn SetupGacelaInterface is deprecated |
||
20 | */ |
||
21 | 26 | public static function bootstrap(string $appRootDir, $configFn = null): void |
|
37 | } |
||
38 | |||
39 | /** |
||
40 | * @param null|SetupGacelaInterface|callable(GacelaConfig):void $configFn |
||
41 | */ |
||
42 | 26 | private static function normalizeSetup($configFn): SetupGacelaInterface |
|
55 |