function JumpStatementsSpacingSniff::checkLinesBefore
Overrides AbstractControlStructureSpacing::checkLinesBefore
File
-
vendor/
slevomat/ coding-standard/ SlevomatCodingStandard/ Sniffs/ ControlStructures/ JumpStatementsSpacingSniff.php, line 150
Class
Namespace
SlevomatCodingStandard\Sniffs\ControlStructuresCode
protected function checkLinesBefore(File $phpcsFile, int $jumpStatementPointer) : void {
if ($this->allowSingleLineYieldStacking && $this->isStackedSingleLineYield($phpcsFile, $jumpStatementPointer, true)) {
return;
}
if ($this->isThrowExpression($phpcsFile, $jumpStatementPointer)) {
return;
}
parent::checkLinesBefore($phpcsFile, $jumpStatementPointer);
}