class PropertyLabelSpacingSniff
Hierarchy
- class \PHP_CodeSniffer\Standards\Squiz\Sniffs\WhiteSpace\PropertyLabelSpacingSniff implements \PHP_CodeSniffer\Sniffs\Sniff
Expanded class hierarchy of PropertyLabelSpacingSniff
File
-
vendor/
squizlabs/ php_codesniffer/ src/ Standards/ Squiz/ Sniffs/ WhiteSpace/ PropertyLabelSpacingSniff.php, line 17
Namespace
PHP_CodeSniffer\Standards\Squiz\Sniffs\WhiteSpaceView source
class PropertyLabelSpacingSniff implements Sniff {
/**
* A list of tokenizers this sniff supports.
*
* @var array
*/
public $supportedTokenizers = [
'JS',
];
/**
* Returns an array of tokens this test wants to listen for.
*
* @return array<int|string>
*/
public function register() {
return [
T_PROPERTY,
T_LABEL,
];
}
//end register()
/**
* Processes this test, when one of its tokens is encountered.
*
* @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) {
$tokens = $phpcsFile->getTokens();
$colon = $phpcsFile->findNext(T_COLON, $stackPtr + 1);
if ($colon !== $stackPtr + 1) {
$error = 'There must be no space before the colon in a property/label declaration';
$fix = $phpcsFile->addFixableError($error, $stackPtr, 'Before');
if ($fix === true) {
$phpcsFile->fixer
->replaceToken($stackPtr + 1, '');
}
}
if ($tokens[$colon + 1]['code'] !== T_WHITESPACE || $tokens[$colon + 1]['content'] !== ' ') {
$error = 'There must be a single space after the colon in a property/label declaration';
$fix = $phpcsFile->addFixableError($error, $stackPtr, 'After');
if ($fix === true) {
if ($tokens[$colon + 1]['code'] === T_WHITESPACE) {
$phpcsFile->fixer
->replaceToken($colon + 1, ' ');
}
else {
$phpcsFile->fixer
->addContent($colon, ' ');
}
}
}
}
//end process()
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
PropertyLabelSpacingSniff::$supportedTokenizers | public | property | A list of tokenizers this sniff supports. | |
PropertyLabelSpacingSniff::process | public | function | Processes this test, when one of its tokens is encountered. | Overrides Sniff::process |
PropertyLabelSpacingSniff::register | public | function | Returns an array of tokens this test wants to listen for. | Overrides Sniff::register |