Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | public function __construct( |
||
20 | string $parent, |
||
21 | string $children, |
||
22 | string $comment, |
||
23 | string $arrow, |
||
24 | bool $isNullable |
||
25 | ) { |
||
26 | $this->parent = $this->resolveString($parent); |
||
27 | $this->children = $this->resolveString($children); |
||
28 | $this->comment = $comment; |
||
29 | $this->arrow = $arrow; |
||
30 | $this->isNullable = $isNullable; |
||
31 | } |
||
42 |