Conditions | 1 |
Paths | 1 |
Total Lines | 27 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
41 | public function getErrorList($testFile) |
||
42 | { |
||
43 | return array( |
||
44 | // The "=" operator. |
||
45 | 2 => 1, |
||
46 | // The "&=" operator. |
||
47 | 3 => 1, |
||
48 | // The ".=" operator. |
||
49 | 4 => 1, |
||
50 | // The "/=" operator. |
||
51 | 5 => 1, |
||
52 | // The "-=" operator. |
||
53 | 6 => 1, |
||
54 | // The "%=" operator. |
||
55 | 7 => 1, |
||
56 | // The "*=" operator. |
||
57 | 8 => 1, |
||
58 | // The "+=" operator. |
||
59 | 9 => 1, |
||
60 | // The "^=" operator. |
||
61 | 10 => 1, |
||
62 | // The "=>" operator. |
||
63 | 11 => 1, |
||
64 | // The "=" on a new line. |
||
65 | 23 => 1, |
||
66 | ); |
||
67 | }//end getErrorList() |
||
68 | |||
85 |