1 | <?php |
||
30 | class NoSpaceAfterBooleanNotUnitTest extends AbstractSniffUnitTest |
||
31 | { |
||
32 | |||
33 | |||
34 | /** |
||
35 | * Returns the lines where errors should occur. |
||
36 | * |
||
37 | * The key of the array should represent the line number and the value |
||
38 | * should represent the number of errors that should occur on that line. |
||
39 | * |
||
40 | * @param string $testFile Name of the file with test data. |
||
41 | * |
||
42 | * @return array <int, int> |
||
43 | */ |
||
44 | public function getErrorList($testFile) |
||
52 | |||
53 | |||
54 | /** |
||
55 | * Returns the lines where warnings should occur. |
||
56 | * |
||
57 | * The key of the array should represent the line number and the value |
||
58 | * should represent the number of warnings that should occur on that line. |
||
59 | * |
||
60 | * @param string $testFile Name of the file with test data. |
||
61 | * |
||
62 | * @return array <int, int> |
||
63 | */ |
||
64 | public function getWarningList($testFile) |
||
68 | }//end class |
||
69 |