src/Reports/Code.php 1 location
|
@@ 176-181 (lines=6) @@
|
| 173 |
|
echo 'S'; |
| 174 |
|
} |
| 175 |
|
|
| 176 |
|
if ($report['warnings'] > 0) { |
| 177 |
|
echo ' AND '.$report['warnings'].' WARNING'; |
| 178 |
|
if ($report['warnings'] !== 1) { |
| 179 |
|
echo 'S'; |
| 180 |
|
} |
| 181 |
|
} |
| 182 |
|
|
| 183 |
|
echo ' AFFECTING '.count($report['messages']).' LINE'; |
| 184 |
|
if (count($report['messages']) !== 1) { |
src/Reports/Full.php 1 location
|
@@ 100-105 (lines=6) @@
|
| 97 |
|
echo 'S'; |
| 98 |
|
} |
| 99 |
|
|
| 100 |
|
if ($report['warnings'] > 0) { |
| 101 |
|
echo ' AND '.$report['warnings'].' WARNING'; |
| 102 |
|
if ($report['warnings'] !== 1) { |
| 103 |
|
echo 'S'; |
| 104 |
|
} |
| 105 |
|
} |
| 106 |
|
|
| 107 |
|
echo ' AFFECTING '.count($report['messages']).' LINE'; |
| 108 |
|
if (count($report['messages']) !== 1) { |