| Total Complexity | 5 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class PhpInterface extends PhpClass |
||
| 8 | { |
||
| 9 | public const PHP_DECLARATION = 'interface'; |
||
| 10 | |||
| 11 | public const PHP_IMPLEMENTS_KEYWORD = 'extends'; |
||
| 12 | |||
| 13 | 16 | public function getAbstract(): bool |
|
| 14 | { |
||
| 15 | 16 | return false; |
|
| 16 | } |
||
| 17 | |||
| 18 | 16 | public function getExtends() |
|
| 21 | } |
||
| 22 | |||
| 23 | 18 | public function getChildrenTypes(): array |
|
| 30 | ]; |
||
| 31 | } |
||
| 32 | |||
| 33 | 18 | public function addChild($child): AbstractElement |
|
| 42 |