Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. JumpStatementsSpacingSniff.php

function JumpStatementsSpacingSniff::getLinesCountBeforeFirst

Overrides AbstractControlStructureSpacing::getLinesCountBeforeFirst

File

vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/JumpStatementsSpacingSniff.php, line 111

Class

JumpStatementsSpacingSniff

Namespace

SlevomatCodingStandard\Sniffs\ControlStructures

Code

protected function getLinesCountBeforeFirst(File $phpcsFile, int $jumpStatementPointer) : int {
    if ($this->linesCountBeforeWhenFirstInCaseOrDefault !== null && $this->isFirstInCaseOrDefault($phpcsFile, $jumpStatementPointer)) {
        return $this->linesCountBeforeWhenFirstInCaseOrDefault;
    }
    return $this->linesCountBeforeFirst;
}
RSS feed
Powered by Drupal