| Total Complexity | 4 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class ConfigurationServiceProvider extends ServiceProvider |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Run any logic before the Hyde Service Provider is registered. |
||
| 14 | */ |
||
| 15 | public function initialize(): void |
||
| 16 | { |
||
| 17 | if (YamlConfigurationService::hasFile()) { |
||
| 18 | YamlConfigurationService::boot(); |
||
| 19 | } |
||
| 20 | } |
||
| 21 | |||
| 22 | public function register(): void |
||
| 23 | { |
||
| 24 | // |
||
| 25 | } |
||
| 26 | |||
| 27 | public function boot(): void |
||
| 29 | // |
||
| 30 | } |
||
| 31 | } |
||
| 32 |