| @@ 204-212 (lines=9) @@ | ||
| 201 | ||
| 202 | $this->enabled = false; |
|
| 203 | ||
| 204 | if ($this->_numFixes > 0) { |
|
| 205 | if (PHP_CodeSniffer_VERBOSITY > 1) { |
|
| 206 | @ob_end_clean(); |
|
| 207 | echo "\t*** Reached maximum number of loops with $this->_numFixes violations left unfixed ***".PHP_EOL; |
|
| 208 | ob_start(); |
|
| 209 | } |
|
| 210 | ||
| 211 | return false; |
|
| 212 | } |
|
| 213 | ||
| 214 | return true; |
|
| 215 | ||
| @@ 399-404 (lines=6) @@ | ||
| 396 | echo "\t=> Changeset failed to apply".PHP_EOL; |
|
| 397 | ob_start(); |
|
| 398 | } |
|
| 399 | } else if (PHP_CodeSniffer_VERBOSITY > 1) { |
|
| 400 | $fixes = count($this->_changeset); |
|
| 401 | @ob_end_clean(); |
|
| 402 | echo "\t=> Changeset ended: $fixes changes applied".PHP_EOL; |
|
| 403 | ob_start(); |
|
| 404 | } |
|
| 405 | ||
| 406 | $this->_changeset = array(); |
|
| 407 | ||