Completed
Push — master ( 14c836...906b18 )
by Björn
06:09 queued 03:52
created
src/Standards/BestIt/Sniffs/DocTags/TagSortingSniff.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -230,27 +230,27 @@  discard block
 block discarded – undo
230 230
 
231 231
             // Insert new line between groups.
232 232
             if ($isGroupSwitch) {
233
-                $newContent .= $lineStartingPadding . '*' . $eolChar;
233
+                $newContent .= $lineStartingPadding.'*'.$eolChar;
234 234
             }
235 235
 
236 236
             // Create the new Tag.
237 237
             // WARNING We do not need a line break in the tag summary.
238
-            $newContent .= $lineStartingPadding . '* ' . trim($thisTagContent);
238
+            $newContent .= $lineStartingPadding.'* '.trim($thisTagContent);
239 239
 
240 240
             if ($tag['contents']) {
241 241
                 $prevLine = $tag['line'];
242 242
                 foreach ($tag['contents'] as $subToken) {
243 243
                     // If we have a line switch, we need to create the correct indentation from before ...
244 244
                     if ($withLineSwitch = $subToken['line'] > $prevLine) {
245
-                        $newContent .= $eolChar .
246
-                            $lineStartingPadding . '*' .
245
+                        $newContent .= $eolChar.
246
+                            $lineStartingPadding.'*'.
247 247
                             str_repeat(' ', $subToken['column'] - strlen($lineStartingPadding) - 2);
248 248
 
249 249
                         $prevLine = $subToken['line'];
250 250
                     }
251 251
 
252 252
                     // ... if we have no line switch, then an additional whitespace is enough.
253
-                    $newContent .= ($withLineSwitch ? '' : ' ') . $subToken['content'];
253
+                    $newContent .= ($withLineSwitch ? '' : ' ').$subToken['content'];
254 254
                 }
255 255
             }
256 256
 
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
             $withReturn = $isReturn;
261 261
         }
262 262
 
263
-        $newContent .= $lineStartingPadding . '*/' . $eolChar;
263
+        $newContent .= $lineStartingPadding.'*/'.$eolChar;
264 264
 
265 265
         return $newContent;
266 266
     }
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
 
333 333
         $fixer->addContentBefore(
334 334
             $token['pointer'],
335
-            $this->file->eolChar . $lineStartPadding . '* '
335
+            $this->file->eolChar.$lineStartPadding.'* '
336 336
         );
337 337
 
338 338
         $fixer->endChangeset();
@@ -348,7 +348,7 @@  discard block
 block discarded – undo
348 348
         $barrier = 0;
349 349
         $tokens = $this->docTagHelper->getTagTokens();
350 350
 
351
-        $tokens = array_filter($tokens, function (array $token) use (&$barrier): bool {
351
+        $tokens = array_filter($tokens, function(array $token) use (&$barrier): bool {
352 352
             $allowed = true;
353 353
 
354 354
             if ($barrier) {
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
     {
444 444
         $tagCounts = $this->docTagHelper->getTagCounts($tokens);
445 445
 
446
-        usort($tokens, function (array $leftToken, array $rightToken) use ($tagCounts): int {
446
+        usort($tokens, function(array $leftToken, array $rightToken) use ($tagCounts): int {
447 447
             return $this->compareTokensForSorting($leftToken, $rightToken, $tagCounts);
448 448
         });
449 449
 
Please login to merge, or discard this patch.
src/Standards/BestIt/Sniffs/Commenting/RequiredDocBlockSniff.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
             $tokenIdent = $this->getTokenName();
100 100
 
101 101
             throw (new CodeError(
102
-                static::CODE_MISSING_DOC_BLOCK_PREFIX . ucfirst($tokenIdent),
102
+                static::CODE_MISSING_DOC_BLOCK_PREFIX.ucfirst($tokenIdent),
103 103
                 self::MESSAGE_MISSING_DOC_BLOCK,
104 104
                 $this->stackPos
105 105
             ))->setPayload([lcfirst($tokenIdent)]);
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
             $tokenIdent = $this->getTokenName();
124 124
 
125 125
             $exception = (new CodeError(
126
-                static::CODE_NO_MULTI_LINE_DOC_BLOCK_PREFIX . ucfirst($tokenIdent),
126
+                static::CODE_NO_MULTI_LINE_DOC_BLOCK_PREFIX.ucfirst($tokenIdent),
127 127
                 self::MESSAGE_NO_MULTI_LINE_DOC_BLOCK_PREFIX,
128 128
                 $docCommentPos
129 129
             ))->setPayload([lcfirst($tokenIdent)]);
Please login to merge, or discard this patch.