| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 71 | public function testLineAfterOpenTag($input, array $errorLines, $process = true) { |
||
| 72 | if ($process === false) { |
||
| 73 | $this->markTestSkipped('PHP short open tags are not enabled.'); |
||
| 74 | return; |
||
| 75 | } |
||
| 76 | $tool = new LineAfterOpenTagReview(); |
||
| 77 | $report = $this->process($tool, $input); |
||
| 78 | $this->assertInvalidLinesInReport($report, $errorLines); |
||
| 79 | } |
||
| 80 | |||
| 82 |