Squiz_Sniffs_CSS_ShorthandSizeSniff
in package
implements
PHP_CodeSniffer_Sniff
Squiz_Sniffs_CSS_ShorthandSizeSniff.
Ensure sizes are defined using shorthand notation where possible, except in the case where shorthand becomes 3 values.
Tags
Interfaces, Classes and Traits
- PHP_CodeSniffer_Sniff
- Represents a PHP_CodeSniffer sniff for sniffing coding standards.
Table of Contents
- $supportedTokenizers : array<string|int, mixed>
- A list of tokenizers this sniff supports.
- $excludeStyles : array<string|int, mixed>
- A list of styles that we shouldn't check.
- process() : void
- Processes the tokens that this sniff is interested in.
- register() : array<string|int, int>
- Returns the token types that this sniff is interested in.
Properties
$supportedTokenizers
A list of tokenizers this sniff supports.
public
array<string|int, mixed>
$supportedTokenizers
= array('CSS')
$excludeStyles
A list of styles that we shouldn't check.
protected
array<string|int, mixed>
$excludeStyles
= array('background-position' => 'background-position', 'box-shadow' => 'box-shadow', 'transform-origin' => 'transform-origin', '-webkit-transform-origin' => '-webkit-transform-origin', '-ms-transform-origin' => '-ms-transform-origin')
These have values that looks like sizes, but are not.
Methods
process()
Processes the tokens that this sniff is interested in.
public
process(PHP_CodeSniffer_File $phpcsFile, int $stackPtr) : void
Parameters
- $phpcsFile : PHP_CodeSniffer_File
-
The file where the token was found.
- $stackPtr : int
-
The position in the stack where the token was found.
Return values
void —register()
Returns the token types that this sniff is interested in.
public
register() : array<string|int, int>