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