diff --git a/Universal/Sniffs/DeclareStatements/BlockModeSniff.php b/Universal/Sniffs/DeclareStatements/BlockModeSniff.php index 31110852..d3cdea43 100644 --- a/Universal/Sniffs/DeclareStatements/BlockModeSniff.php +++ b/Universal/Sniffs/DeclareStatements/BlockModeSniff.php @@ -177,14 +177,6 @@ public function process(File $phpcsFile, $stackPtr) ); return; } - /* - * To do: Add a fixer - * - * But only if strict_types is on its own. In this case we should remove the last brace, - * remove the first one, and after the closing parenthesis add a comma. - * - * Add a fixable test for this case! - */ // Check if there is a code between the declare statement and opening brace/alternative syntax. $nextNonEmpty = $phpcsFile->findNext(Tokens::$emptyTokens, ($closeParenPtr + 1), null, true);