| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | abstract class BaseFoundationCollection extends Collection |
||
| 16 | { |
||
| 17 | protected HydeKernel $kernel; |
||
| 18 | |||
| 19 | abstract protected function runDiscovery(): self; |
||
| 20 | |||
| 21 | public static function boot(HydeKernel $kernel): static |
||
| 24 | } |
||
| 25 | |||
| 26 | protected function __construct($items = []) |
||
| 27 | { |
||
| 28 | parent::__construct($items); |
||
| 29 | } |
||
| 30 | |||
| 31 | protected function setKernel(HydeKernel $kernel): static |
||
| 36 | } |
||
| 37 | } |
||
| 38 |