The use of === true is enforced over implicit true statements, for example:
if ($a) { ... }
should be:
if ($a === true) { ... }
It also enforces the use of === false over ! operators.
void process( PHP_CodeSniffer_File $phpcsFile, int $stackPtr)
array register( )