PHP Класс Squiz_Sniffs_Operators_ComparisonOperatorUsageSniff, PHP_CodeSniffer

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.
Автор: Greg Sherwood ([email protected])
Автор: Marc McIntyre ([email protected])
Наследование: implements PHP_CodeSniffer_Sniff
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
$supportedTokenizers array A list of tokenizers this sniff supports.

Открытые методы

Метод Описание
process ( PHP_CodeSniffer_File $phpcsFile, integer $stackPtr ) : void Process the tokens that this sniff is listening for.
register ( ) : array Registers the token types that this sniff wishes to listen to.

Описание методов

process() публичный Метод

Process the tokens that this sniff is listening for.
public process ( PHP_CodeSniffer_File $phpcsFile, integer $stackPtr ) : void
$phpcsFile PHP_CodeSniffer_File The file where the token was found.
$stackPtr integer The position in the stack where the token was found.
Результат void

register() публичный Метод

Registers the token types that this sniff wishes to listen to.
public register ( ) : array
Результат array

Описание свойств

$supportedTokenizers публичное свойство

A list of tokenizers this sniff supports.
public array $supportedTokenizers
Результат array