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