function JumpStatementsSpacingSniff::getLinesCountBeforeFirst
Overrides AbstractControlStructureSpacing::getLinesCountBeforeFirst
File
-
vendor/
slevomat/ coding-standard/ SlevomatCodingStandard/ Sniffs/ ControlStructures/ JumpStatementsSpacingSniff.php, line 111
Class
Namespace
SlevomatCodingStandard\Sniffs\ControlStructuresCode
protected function getLinesCountBeforeFirst(File $phpcsFile, int $jumpStatementPointer) : int {
if ($this->linesCountBeforeWhenFirstInCaseOrDefault !== null && $this->isFirstInCaseOrDefault($phpcsFile, $jumpStatementPointer)) {
return $this->linesCountBeforeWhenFirstInCaseOrDefault;
}
return $this->linesCountBeforeFirst;
}