Am looking for a way to suppress specific warnings in our source code much like the Java Plugin (
http://docs.sonarqube.org/display/PLUG/Java+Plugin)
I know about the NOSONAR usage and it works - but it also all encompassing and will suppress other errors.
An example is my current class is over the 200 line limit and I want to suppress it for this class.
something like:
/**
* Class PageTemplateTests
* @SuppressWarnings("php:S2042")
*/
class PageTemplateTests extends BaseTest {