class InlineControlStructureSniff in Coder 8.3.x
Same name and namespace in other branches
- 8.3 coder_sniffer/Drupal/Sniffs/ControlStructures/InlineControlStructureSniff.php \Drupal\Sniffs\ControlStructures\InlineControlStructureSniff
- 8.2 coder_sniffer/Drupal/Sniffs/ControlStructures/InlineControlStructureSniff.php \Drupal\Sniffs\ControlStructures\InlineControlStructureSniff
\Drupal\Sniffs\ControlStructures\InlineControlStructureSniff.
Verifies that inline control statements are not present. This Sniff overides the generic sniff because Drupal template files may use the alternative syntax for control structures. See http://www.php.net/manual/en/control-structures.alternative-syntax.php
@category PHP @package PHP_CodeSniffer @link http://pear.php.net/package/PHP_CodeSniffer
Hierarchy
- class \Drupal\Sniffs\ControlStructures\InlineControlStructureSniff extends \PHP_CodeSniffer\Standards\Generic\Sniffs\ControlStructures\InlineControlStructureSniff
Expanded class hierarchy of InlineControlStructureSniff
File
- coder_sniffer/
Drupal/ Sniffs/ ControlStructures/ InlineControlStructureSniff.php, line 27
Namespace
Drupal\Sniffs\ControlStructuresView source
class InlineControlStructureSniff extends GenericInlineControlStructureSniff {
/**
* 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();
// Check for the alternate syntax for control structures with colons (:).
if (isset($tokens[$stackPtr]['parenthesis_closer']) === true) {
$start = $tokens[$stackPtr]['parenthesis_closer'];
}
else {
$start = $stackPtr;
}
$scopeOpener = $phpcsFile
->findNext(T_WHITESPACE, $start + 1, null, true);
if ($tokens[$scopeOpener]['code'] === T_COLON) {
return;
}
parent::process($phpcsFile, $stackPtr);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
InlineControlStructureSniff:: |
public | function | Processes this test, when one of its tokens is encountered. |