How can I suppress PHPCS warnings using comments?

You can get PHP_CodeSniffer to ignore specific files or lines in a file using comments: https://github.com/squizlabs/PHP_CodeSniffer/wiki/Advanced-Usage#ignoring-files-and-folders In this case, the error will be generated on your second class definition, so you’d have to write you second definition like this: // @codingStandardsIgnoreStart class MyClassTest extends \PHPUnit_Framework_TestCase { // @codingStandardsIgnoreEnd // … } But you might also … Read more