Skip to content

Commit 9aa8056

Browse files
committed
Fix CS
1 parent 0a517c6 commit 9aa8056

File tree

6 files changed

+0
-8
lines changed

6 files changed

+0
-8
lines changed

PSR2R/Sniffs/Classes/BraceOnSameLineSniff.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ public function register() {
2222
T_TRAIT,
2323
T_FUNCTION
2424
];
25-
2625
}
2726

2827
/**

PSR2R/Sniffs/Commenting/DocCommentSniff.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ class DocCommentSniff extends AbstractSniff {
4343
*/
4444
public function register() {
4545
return [T_DOC_COMMENT_OPEN_TAG];
46-
4746
}
4847

4948
/**

PSR2R/Sniffs/ControlStructures/SwitchDeclarationSniff.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ class SwitchDeclarationSniff implements PHP_CodeSniffer_Sniff {
4242
*/
4343
public function register() {
4444
return [T_SWITCH];
45-
4645
}
4746

4847
/**
@@ -203,7 +202,6 @@ public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr) {
203202
}
204203
}
205204
}
206-
207205
}
208206

209207
/**
@@ -230,7 +228,6 @@ protected function findNextCase(PHP_CodeSniffer_File $phpcsFile, $stackPtr, $end
230228
}
231229

232230
return $stackPtr;
233-
234231
}
235232

236233
}

PSR2R/Sniffs/Methods/MethodDeclarationSniff.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ protected function processTokenWithinScope(PHP_CodeSniffer_File $phpcsFile, $sta
135135

136136
$phpcsFile->fixer->endChangeset();
137137
}
138-
139138
}
140139

141140
}

PSR2R/Sniffs/Namespaces/UnusedUseStatementSniff.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ class UnusedUseStatementSniff extends \PSR2R\Tools\AbstractSniff {
1919
*/
2020
public function register() {
2121
return [T_USE];
22-
2322
}
2423

2524
/**

PSR2R/Tools/Tokenizer.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ class Tokenizer {
2929
* @throws \Exception
3030
*/
3131
public function __construct($argv) {
32-
3332
$file = !empty($argv[1]) ? $argv[1] : null;
3433
if (!$file || !file_exists($file)) {
3534
throw new Exception('Please provide a valid file.');

0 commit comments

Comments
 (0)