Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | public function allInstanceOfProvider(): array |
||
18 | { |
||
19 | return [ |
||
20 | 'empty' => [[], Node::class, true], |
||
21 | 'one-node-node' => [[new Node()], Node::class, true], |
||
22 | 'one-node-inode' => [[new Node()], INode::class, true], |
||
23 | 'first-node-not-tag' => [[new Node()], INode::class, true], |
||
24 | 'second-node-not-tag' => [[new Tag(), new Node()], Tag::class, false], |
||
25 | ]; |
||
42 |