*/ public function register() { return Collections::objectOperators(); } /** * Processes this test, when one of its tokens is encountered. * * @since 9.2.0 * * @param \PHP_CodeSniffer\Files\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 (ScannedCode::shouldRunOnOrAbove('5.3') === false) { return; } $tokens = $phpcsFile->getTokens(); $nextNonEmpty = $phpcsFile->findNext(Tokens::$emptyTokens, ($stackPtr + 1), null, true); if ($nextNonEmpty === false || $tokens[$nextNonEmpty]['code'] !== \T_STRING) { /* * Not a method call. * * Note: This disregards method calls with the method name in a variable, like: * $method = '__toString'; * $obj->$method(); * However, that would be very hard to examine reliably anyway. */ return; } if (\strtolower($tokens[$nextNonEmpty]['content']) !== '__tostring') { // Not a call to the __toString() method. return; } if (PassedParameters::hasParameters($phpcsFile, $nextNonEmpty) === false) { return; } // If we're still here, then this is a call to the __toString() magic method passing parameters. $phpcsFile->addError( 'The __toString() magic method will no longer accept passed arguments since PHP 5.3', $stackPtr, 'Passed' ); } }