I'm trying to use PHP_CodeSniffer to sniff the problems in a php file according to the zend coding standards. The problem is 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';
Ben bir şey eksik, bu kod standardının parçası değildir?