| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | trait FacadeResolverAwareTrait |
||
| 10 | { |
||
| 11 | private ?AbstractFacade $facade = null; |
||
| 12 | |||
| 13 | 1 | protected function getFacade(): AbstractFacade |
|
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return class-string |
||
|
1 ignored issue
–
show
|
|||
| 24 | */ |
||
| 25 | abstract protected function facadeClass(): string; |
||
| 26 | } |
||
| 27 |