| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | class SeparatingNode extends TextNode |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @param TagNode|null $parent |
||
| 23 | */ |
||
| 24 | 15 | public function __construct(?TagNode $parent) |
|
| 25 | { |
||
| 26 | 15 | parent::__construct($parent, ''); |
|
| 27 | 15 | } |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @param Node|null $other |
||
| 31 | * @return bool |
||
| 32 | */ |
||
| 33 | 1 | public function equals(?Node $other): bool |
|
| 38 | } |
||
| 39 | } |
||
| 40 |