Completed
Pull Request — master (#30)
by
unknown
13:33 queued 55s
created
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/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/Sniffs/Commenting/GeneralDocSniff.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\Commenting;
6 6
 
Please login to merge, or discard this patch.
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
 
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
 
188 188
         $phpcsFile->fixer->beginChangeset();
189 189
         $phpcsFile->fixer->addNewlineBefore($closingBracePtr - 1);
190
-        $phpcsFile->fixer->addContentBefore($closingBracePtr - 1, $expectedReturnSpaces . 'return $this;');
190
+        $phpcsFile->fixer->addContentBefore($closingBracePtr - 1, $expectedReturnSpaces.'return $this;');
191 191
         $phpcsFile->fixer->addNewlineBefore($closingBracePtr - 1);
192 192
         $phpcsFile->fixer->endChangeset();
193 193
     }
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.
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/DocTagSortingHelper.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
 
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
             array_column($commentTags, 'content')
113 113
         );
114 114
 
115
-        uasort($tagNames, function ($tagA, $tagB) use ($sortedMetaTags) {
115
+        uasort($tagNames, function($tagA, $tagB) use ($sortedMetaTags) {
116 116
             $expectedPosA = array_search($tagA, $sortedMetaTags, true);
117 117
             $expectedPosB = array_search($tagB, $sortedMetaTags, true);
118 118
 
Please login to merge, or discard this patch.
src/Standards/BestIt/CodeSniffer/Helper/DocTagHelper.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
 
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
 
245 245
         $this->file->getFixer()->beginChangeset();
246 246
 
247
-        $content = $this->file->getEolChar() . str_repeat('    ', $tagToken['level']) . ' *';
247
+        $content = $this->file->getEolChar().str_repeat('    ', $tagToken['level']).' *';
248 248
 
249 249
         $this->file->getFixer()->addContentBefore($eolPtr, $content);
250 250
 
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.