Documentation

MySource_Sniffs_CSS_BrowserSpecificStylesSniff
in package
implements PHP_CodeSniffer_Sniff

MySource_Sniffs_CSS_BrowserSpecificStylesSniff.

Ensure that browser-specific styles are not used.

Tags
category

PHP

author

Greg Sherwood gsherwood@squiz.net

copyright

2006-2014 Squiz Pty Ltd (ABN 77 084 670 600)

license

https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence

version

Release: @package_version@

link
http://pear.php.net/package/PHP_CodeSniffer

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.
$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 = array('CSS')

$specificStylesheets

A list of specific stylesheet suffixes we allow.

protected array<string|int, mixed> $specificStylesheets = array('moz' => rue, 'ie' => rue, 'ie7' => rue, 'ie8' => rue, 'webkit' => rue)

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(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>
Return values
array<string|int, int>

Search results