Completed
Pull Request — master (#19)
by
unknown
08:16
created
src/Standards/BestIt/Sniffs/Functions/FluentSetterSniff.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@
 block discarded – undo
184 184
 
185 185
         $phpcsFile->fixer->beginChangeset();
186 186
         $phpcsFile->fixer->addNewlineBefore($closingBracePtr - 1);
187
-        $phpcsFile->fixer->addContentBefore($closingBracePtr - 1, $expectedReturnSpaces . 'return $this;');
187
+        $phpcsFile->fixer->addContentBefore($closingBracePtr - 1, $expectedReturnSpaces.'return $this;');
188 188
         $phpcsFile->fixer->addNewlineBefore($closingBracePtr - 1);
189 189
         $phpcsFile->fixer->endChangeset();
190 190
     }
Please login to merge, or discard this patch.
src/Standards/BestIt/Helper/DocTagHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
 
272 272
         $this->file->fixer->beginChangeset();
273 273
 
274
-        $content = $this->file->eolChar . str_repeat('    ', $tagToken['level']) . ' *';
274
+        $content = $this->file->eolChar.str_repeat('    ', $tagToken['level']).' *';
275 275
 
276 276
         $this->file->fixer->addContentBefore($eolPtr, $content);
277 277
 
@@ -507,7 +507,7 @@  discard block
 block discarded – undo
507 507
             array_column($commentTags, 'content')
508 508
         );
509 509
 
510
-        uasort($tagNames, function ($tagA, $tagB) use ($sortedMetaTags) {
510
+        uasort($tagNames, function($tagA, $tagB) use ($sortedMetaTags) {
511 511
             $expectedPosA = array_search($tagA, $sortedMetaTags, true);
512 512
             $expectedPosB = array_search($tagB, $sortedMetaTags, true);
513 513
 
Please login to merge, or discard this patch.
src/Standards/BestIt/Helper/DocSummaryHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -238,7 +238,7 @@
 block discarded – undo
238 238
 
239 239
         $this->file->fixer->addContent(
240 240
             $summaryPtr,
241
-            $this->file->eolChar . str_repeat('    ', $summaryToken['level']) . ' *'
241
+            $this->file->eolChar.str_repeat('    ', $summaryToken['level']).' *'
242 242
         );
243 243
 
244 244
         $this->file->fixer->endChangeset();
Please login to merge, or discard this patch.
src/Standards/BestIt/Helper/DocDescriptionHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -300,7 +300,7 @@
 block discarded – undo
300 300
 
301 301
         $this->file->fixer->addContent(
302 302
             $descEndPtr,
303
-            $this->file->eolChar . str_repeat('    ', $descEndToken['level']) . ' *'
303
+            $this->file->eolChar.str_repeat('    ', $descEndToken['level']).' *'
304 304
         );
305 305
 
306 306
         $this->file->fixer->endChangeset();
Please login to merge, or discard this patch.