Total Complexity | 4 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
14 | final class Parameter implements HasType |
||
15 | { |
||
16 | use WithVariable; |
||
17 | |||
18 | /** @var bool */ |
||
19 | private $isVariadic; |
||
20 | |||
21 | /** @var bool */ |
||
22 | private $isByReference; |
||
23 | |||
24 | public function __construct(Variable $variable, bool $isVariadic = false, bool $isByReference = false) |
||
29 | } |
||
30 | |||
31 | public function __toString(): string |
||
41 |