Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 870555e

Browse files
committed
CS fixes per phpcs
1 parent f26d446 commit 870555e

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

src/Scanner/ClassScanner.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,6 @@ protected function scan()
919919
SCANNER_TOP:
920920

921921
switch ($tokenType) {
922-
923922
case T_DOC_COMMENT:
924923
$this->docComment = $tokenContent;
925924
goto SCANNER_CONTINUE;
@@ -944,7 +943,6 @@ protected function scan()
944943
$this->lineStart = $tokenLine;
945944

946945
switch ($tokenType) {
947-
948946
case T_FINAL:
949947
$this->isFinal = true;
950948
goto SCANNER_CLASS_INFO_CONTINUE;
@@ -1008,7 +1006,6 @@ protected function scan()
10081006
$classInterfaceIndex++;
10091007
$this->shortInterfaces[$classInterfaceIndex] = '';
10101008
}
1011-
10121009
}
10131010

10141011
SCANNER_CLASS_INFO_CONTINUE:
@@ -1021,7 +1018,6 @@ protected function scan()
10211018
SCANNER_CLASS_INFO_END:
10221019

10231020
goto SCANNER_CONTINUE;
1024-
10251021
}
10261022

10271023
if ($tokenType === null && $tokenContent === '{' && $braceCount === 0) {
@@ -1037,7 +1033,6 @@ protected function scan()
10371033
}
10381034

10391035
switch ($tokenType) {
1040-
10411036
case T_CONST:
10421037
$infos[$infoIndex] = [
10431038
'type' => 'constant',
@@ -1239,7 +1234,6 @@ protected function scan()
12391234
}
12401235

12411236
switch ($tokenType) {
1242-
12431237
case T_CONST:
12441238
$memberContext = 'constant';
12451239
$infos[$infoIndex]['type'] = 'constant';

src/Scanner/DocBlockScanner.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ protected function scan()
159159

160160
case 'DOCBLOCK_COMMENTEND':
161161
goto SCANNER_END;
162-
163162
}
164163

165164
SCANNER_CONTINUE:

0 commit comments

Comments
 (0)