Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | final class CustomResolvedClass extends ResolvedClassInterface |
||
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) |
||
18 | { |
||
19 | $this->bool = $bool; |
||
20 | $this->string = $string; |
||
21 | $this->int = $int; |
||
22 | $this->float = $float; |
||
23 | $this->array = $array; |
||
24 | } |
||
25 | |||
26 | public function getTypes(): array |
||
34 | ]; |
||
35 | } |
||
37 |