\Joomla_Sniffs_WhiteSpace_SemicolonSpacingSniff
Ensure there is no whitespace before a semicolon <b>;</b>.
Example:
<b class="bad">echo $a ;</b>
<b class="good">echo $a;</b>
- Author: Greg Sherwood <gsherwood@squiz.net>
- Copyright: 2006 Squiz Pty Ltd (ABN 77 084 670 600)
- License: http://matrix.squiz.net/developer/tools/php_cs/licence BSD Licence
Synopsis
class Joomla_Sniffs_WhiteSpace_SemicolonSpacingSniff
implements
PHP_CodeSniffer_Sniff
{
- // members
- public $supportedTokenizers;
Hierarchy
Implements
Members
public
- $supportedTokenizers
—
array
A list of tokenizers this sniff supports.
Methods
public
- process() — Processes this test, when one of its tokens is encountered.
- register() — Returns an array of tokens this test wants to listen for.