Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
44 | 1 | public function __construct(string $name, Type $type, Value $defaultValue, bool $isReference = false, bool $isVariadic = false) |
|
45 | { |
||
46 | 1 | $this->name = $name; |
|
47 | 1 | $this->type = $type; |
|
48 | 1 | $this->defaultValue = $defaultValue; |
|
49 | 1 | $this->isReference = $isReference; |
|
50 | 1 | $this->isVariadic = $isVariadic; |
|
51 | 1 | } |
|
52 | |||
93 |