| Total Complexity | 6 |
| Total Lines | 43 |
| Duplicated Lines | 0 % |
| Coverage | 81.25% |
| Changes | 5 | ||
| 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 |
|
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @param null|SetupGacelaInterface|callable(GacelaConfig):void $configFn |
||
| 46 | */ |
||
| 47 | 26 | private static function normalizeSetup($configFn): SetupGacelaInterface |
|
| 60 |