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 | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
21 | public function test_all_files_pass_phplint(): void { |
||
22 | $paths = [ROOT]; |
||
23 | $excludes = ['vendor']; |
||
24 | $linter = new Linter($paths, $excludes, warning: true); |
||
25 | $linter->setProcessLimit(8); // multiprocessing |
||
26 | |||
27 | // get errors |
||
28 | $errors = $linter->lint(); |
||
29 | $this->assertEmpty($errors, print_r($errors, true)); |
||
|
|||
30 | } |
||
33 |