Completed
Pull Request — master (#22)
by
unknown
06:29
created
src/Standards/BestIt/Sniffs/Functions/FluentSetterSniff.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace BestIt\Sniffs\Functions;
6 6
 
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
 
187 187
         $phpcsFile->fixer->beginChangeset();
188 188
         $phpcsFile->fixer->addNewlineBefore($closingBracePtr - 1);
189
-        $phpcsFile->fixer->addContentBefore($closingBracePtr - 1, $expectedReturnSpaces . 'return $this;');
189
+        $phpcsFile->fixer->addContentBefore($closingBracePtr - 1, $expectedReturnSpaces.'return $this;');
190 190
         $phpcsFile->fixer->addNewlineBefore($closingBracePtr - 1);
191 191
         $phpcsFile->fixer->endChangeset();
192 192
     }
Please login to merge, or discard this patch.
src/Standards/BestIt/Sniffs/Formatting/SpaceAfterDeclareSniff.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace BestIt\Sniffs\Formatting;
6 6
 
Please login to merge, or discard this patch.
src/Standards/BestIt/Sniffs/Commenting/MethodDocSniff.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 
6 6
 namespace BestIt\Sniffs\Commenting;
Please login to merge, or discard this patch.
src/Standards/BestIt/Sniffs/Formatting/OpenTagSniff.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace BestIt\Sniffs\Formatting;
6 6
 
Please login to merge, or discard this patch.
src/Standards/BestIt/Sniffs/TypeHints/DeclareStrictTypesSniff.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace BestIt\Sniffs\TypeHints;
6 6
 
Please login to merge, or discard this patch.
src/Standards/BestIt/CodeSniffer/Helper/DocHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace BestIt\CodeSniffer\Helper;
6 6
 
Please login to merge, or discard this patch.
src/Standards/BestIt/CodeSniffer/Helper/DocSummaryHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace BestIt\CodeSniffer\Helper;
6 6
 
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
 
243 243
         $this->file->getFixer()->addContent(
244 244
             $summaryPtr,
245
-            $this->file->getEolChar() . str_repeat('    ', $summaryToken['level']) . ' *'
245
+            $this->file->getEolChar().str_repeat('    ', $summaryToken['level']).' *'
246 246
         );
247 247
 
248 248
         $this->file->getFixer()->endChangeset();
Please login to merge, or discard this patch.
src/Standards/BestIt/CodeSniffer/Helper/DocDescriptionHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace BestIt\CodeSniffer\Helper;
6 6
 
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
 
303 303
         $this->file->getFixer()->addContent(
304 304
             $descEndPtr,
305
-            $this->file->getEolChar() . str_repeat('    ', $descEndToken['level']) . ' *'
305
+            $this->file->getEolChar().str_repeat('    ', $descEndToken['level']).' *'
306 306
         );
307 307
 
308 308
         $this->file->getFixer()->endChangeset();
Please login to merge, or discard this patch.
src/Standards/BestIt/CodeSniffer/Fixer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace BestIt\CodeSniffer;
6 6
 
Please login to merge, or discard this patch.