function EarlyExitSniff::getScopeCode
1 call to EarlyExitSniff::getScopeCode()
- EarlyExitSniff::processElse in vendor/
slevomat/ coding-standard/ SlevomatCodingStandard/ Sniffs/ ControlStructures/ EarlyExitSniff.php
File
-
vendor/
slevomat/ coding-standard/ SlevomatCodingStandard/ Sniffs/ ControlStructures/ EarlyExitSniff.php, line 364
Class
Namespace
SlevomatCodingStandard\Sniffs\ControlStructuresCode
private function getScopeCode(File $phpcsFile, int $scopePointer) : string {
$tokens = $phpcsFile->getTokens();
return TokenHelper::getContent($phpcsFile, $tokens[$scopePointer]['scope_opener'] + 1, $tokens[$scopePointer]['scope_closer'] - 1);
}