| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class ConcreteClass extends AbstractClass |
||
| 10 | { |
||
| 11 | private bool $bool; |
||
| 12 | private string $string; |
||
| 13 | private int $int; |
||
| 14 | private float $float; |
||
| 15 | private array $array; |
||
| 16 | |||
| 17 | public function __construct(bool $bool, string $string, int $int, float $float, array $array) |
||
| 24 | } |
||
| 25 | |||
| 26 | public function getTypes(): array |
||
| 37 |