Conditions | 3 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | public function boot(): void |
||
22 | { |
||
23 | if (! $this->readyToBoot || $this->booting) { |
||
24 | return; |
||
25 | } |
||
26 | |||
27 | $this->booting = true; |
||
28 | |||
29 | $this->files = FileCollection::boot($this); |
||
|
|||
30 | $this->pages = PageCollection::boot($this); |
||
31 | $this->routes = RouteCollection::boot($this); |
||
32 | |||
33 | $this->booting = false; |
||
34 | $this->booted = true; |
||
35 | } |
||
46 |