mirror of
https://github.com/10h30/genesis-simple-sidebars.git
synced 2026-07-12 02:56:12 +09:00
88 lines
2.2 KiB
PHP
88 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* \PHPCompatibility\Sniffs\Classes\NewAnonymousClasses.
|
|
*
|
|
* PHP version 7.0
|
|
*
|
|
* @category PHP
|
|
* @package PHPCompatibility
|
|
* @author Wim Godden <wim.godden@cu.be>
|
|
*/
|
|
|
|
namespace PHPCompatibility\Sniffs\Classes;
|
|
|
|
use PHPCompatibility\Sniff;
|
|
use PHP_CodeSniffer_File as File;
|
|
use PHP_CodeSniffer_Tokens as Tokens;
|
|
|
|
/**
|
|
* \PHPCompatibility\Sniffs\Classes\NewAnonymousClasses.
|
|
*
|
|
* Anonymous classes are supported in PHP 7.0
|
|
*
|
|
* PHP version 7.0
|
|
*
|
|
* @category PHP
|
|
* @package PHPCompatibility
|
|
* @author Wim Godden <wim.godden@cu.be>
|
|
*/
|
|
class NewAnonymousClassesSniff extends Sniff
|
|
{
|
|
|
|
/**
|
|
* Tokens which in various PHP versions indicate the `class` keyword.
|
|
*
|
|
* The dedicated anonymous class token is added from the `register()`
|
|
* method if the token is available.
|
|
*
|
|
* @var array
|
|
*/
|
|
private $indicators = array(
|
|
T_CLASS => T_CLASS,
|
|
);
|
|
|
|
/**
|
|
* Returns an array of tokens this test wants to listen for.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function register()
|
|
{
|
|
if (defined('T_ANON_CLASS')) {
|
|
$this->indicators[T_ANON_CLASS] = T_ANON_CLASS;
|
|
}
|
|
|
|
return array(T_NEW);
|
|
}
|
|
|
|
|
|
/**
|
|
* Processes this test, when one of its tokens is encountered.
|
|
*
|
|
* @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->supportsBelow('5.6') === false) {
|
|
return;
|
|
}
|
|
|
|
$tokens = $phpcsFile->getTokens();
|
|
$nextNonEmpty = $phpcsFile->findNext(Tokens::$emptyTokens, $stackPtr + 1, null, true, null, true);
|
|
if ($nextNonEmpty === false || isset($this->indicators[$tokens[$nextNonEmpty]['code']]) === false) {
|
|
return;
|
|
}
|
|
|
|
// Still here ? In that case, it is an anonymous class.
|
|
$phpcsFile->addError(
|
|
'Anonymous classes are not supported in PHP 5.6 or earlier',
|
|
$stackPtr,
|
|
'Found'
|
|
);
|
|
}
|
|
}
|