Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
12 | 2 | public function __construct($expression = null, string $returnType = '') |
|
13 | { |
||
14 | 2 | $this->signature = new Signature('', Modifier::NONE, $returnType, 'fn'); |
|
15 | 2 | $this->expression = $this->manageExprDependency($expression); |
|
16 | |||
17 | 2 | $this->dependencyAwareChildren[] = $this->signature; |
|
18 | 2 | } |
|
61 |