true, 'T_ANON_CLASS' => true, 'T_INTERFACE' => true, 'T_TRAIT' => true, 'T_NAMESPACE' => true, ); /** * Returns an array of tokens this test wants to listen for. * * @since 8.1.0 * * @return array */ public function register() { return array(\T_FUNCTION); } /** * Processes this test, when one of its tokens is encountered. * * @since 8.1.0 * * @param \PHP_CodeSniffer_File $phpcsFile The file being scanned. * @param int $stackPtr The position of the current token in the * stack passed in $tokens. * * @return void */ public function process(File $phpcsFile, $stackPtr) { if ($this->supportsAbove('7.2') === false) { return; } $funcName = $phpcsFile->getDeclarationName($stackPtr); if (strtolower($funcName) !== '__autoload') { return; } if ($this->validDirectScope($phpcsFile, $stackPtr, $this->checkForScopes) !== false) { return; } if ($this->determineNamespace($phpcsFile, $stackPtr) !== '') { return; } $phpcsFile->addWarning('Use of __autoload() function is deprecated since PHP 7.2', $stackPtr, 'Found'); } }