BrowserSpecificStylesSniff
in package
implements
Sniff
Interfaces, Classes and Traits
Table of Contents
- $supportedTokenizers : array<string|int, mixed>
- A list of tokenizers this sniff supports.
- $specificStylesheets : array<string|int, mixed>
- A list of specific stylesheet suffixes we allow.
- 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
= ['CSS']
$specificStylesheets
A list of specific stylesheet suffixes we allow.
protected
array<string|int, mixed>
$specificStylesheets
= ['moz' => true, 'ie' => true, 'ie7' => true, 'ie8' => true, 'webkit' => true]
These stylesheets contain browser specific styles so this sniff ignore them files in the form: *_moz.css and *_ie7.css etc.
Methods
process()
Processes the tokens that this sniff is interested in.
public
process(File $phpcsFile, int $stackPtr) : void
Parameters
- $phpcsFile : 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>