We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function invalidXmlYieldsFalse(): void |
||
| 21 | { |
||
| 22 | $this->assertInvalidXml(false); |
||
| 23 | $this->assertInvalidXml(null); |
||
| 24 | $this->assertInvalidXml(1); |
||
| 25 | $this->assertInvalidXml([]); |
||
| 26 | $this->assertInvalidXml(new \stdClass()); |
||
| 27 | $this->assertInvalidXml(''); |
||
| 28 | $this->assertInvalidXml('not xml'); |
||
| 29 | $this->assertInvalidXml('<tag-not-closed>'); |
||
| 30 | } |
||
| 49 |