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 | 6 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php declare(strict_types=1);  | 
            ||
| 17 | 	public function test_all_files_pass_phplint() { | 
            ||
| 18 | $exit_code = 1;  | 
            ||
| 19 | $output = [];  | 
            ||
| 20 | exec(ROOT . 'test/phplint.sh', $output, $exit_code);  | 
            ||
| 21 | 		$this->assertSame(0, $exit_code, join("\n", $output)); | 
            ||
| 22 | $this->assertEquals(end($output), 'Success! No linting errors.');  | 
            ||
| 23 | }  | 
            ||
| 26 |