I am trying to use PHP_CodeSniffer to sniff problems in a php file according to zend coding standards. The problem is that some of the basic rules are not detected, for example
String Literals $a = "Example String"; should give a warning because the standard is $a = 'Example String';
Am I missing something, is this not part of the code standard?
source share