Passed
Push — master ( 682fcd...f00a38 )
by Julius
01:55
created
src/Builder/PhpDomainBuilder.php 1 patch
Braces   +24 added lines, -9 removed lines patch added patch discarded remove patch
@@ -348,44 +348,58 @@  discard block
 block discarded – undo
348 348
         $tags = $docBlock->getTagsByName($tagName);
349 349
         switch ($tagName) {
350 350
             case 'return':
351
-                if (count($tags) === 0) continue;
351
+                if (count($tags) === 0) {
352
+                    continue;
353
+                }
352 354
                 /** @var Return_ $return */
353 355
                 $return = $tags[0];
354 356
                 $this->addMultiline(':Returns: ' . self::typesToRst($return->getType()) . ' ' . RstBuilder::escape($return->getDescription()), true);
355 357
                 break;
356 358
             case 'var':
357
-                if (count($tags) === 0) continue;
359
+                if (count($tags) === 0) {
360
+                    continue;
361
+                }
358 362
                 /** @var DocBlock\Tags\Var_ $return */
359 363
                 $return = $tags[0];
360 364
                 $this->addMultiline(':Type: ' . self::typesToRst($return->getType()) . ' ' . RstBuilder::escape($return->getDescription()), true);
361 365
                 break;
362 366
             case 'throws':
363
-                if (count($tags) === 0) continue;
367
+                if (count($tags) === 0) {
368
+                    continue;
369
+                }
364 370
                 /** @var Throws $tag */
365 371
                 foreach ($tags as $tag) {
366 372
                     $this->addMultiline(':Throws: ' . $tag->getType() . ' ' . RstBuilder::escape($tag->getDescription()), true);
367 373
                 }
368 374
                 break;
369 375
             case 'since':
370
-                if (count($tags) === 0) continue;
376
+                if (count($tags) === 0) {
377
+                    continue;
378
+                }
371 379
                 /** @var Since $return */
372 380
                 $return = $tags[0];
373 381
                 $this->addMultiline(':Since: ' . $return->getVersion() . ' ' . RstBuilder::escape($return->getDescription()), true);
374 382
                 break;
375 383
             case 'deprecated':
376
-                if (count($tags) === 0) continue;
384
+                if (count($tags) === 0) {
385
+                    continue;
386
+                }
377 387
                 /** @var Deprecated $return */
378 388
                 $return = $tags[0];
379 389
                 $this->addMultiline(':Deprecated: ' . $return->getVersion() . ' ' . RstBuilder::escape($return->getDescription()), true);
380 390
                 break;
381 391
             case 'see':
382
-                if (count($tags) === 0) continue;
392
+                if (count($tags) === 0) {
393
+                    continue;
394
+                }
383 395
                 /** @var See $return */
384 396
                 $return = $tags[0];
385 397
                 $this->addMultiline(':See: ' . $return->getReference() . ' ' . RstBuilder::escape($return->getDescription()), true);
386 398
                 break;
387 399
             case 'license':
388
-                if (count($tags) === 0) continue;
400
+                if (count($tags) === 0) {
401
+                    continue;
402
+                }
389 403
                 /** @var DocBlock\Tags\BaseTag $return */
390 404
                 $return = $tags[0];
391 405
                 $this->addMultiline(':License: ' . RstBuilder::escape($return->getDescription()), true);
@@ -419,8 +433,9 @@  discard block
 block discarded – undo
419 433
                 $result .= $type . ' | ';
420 434
                 continue;
421 435
             }
422
-            if (0 === strpos($type, '\\'))
423
-                $type = substr($type, 1);
436
+            if (0 === strpos($type, '\\')) {
437
+                            $type = substr($type, 1);
438
+            }
424 439
             $result .= ':any:`' . RstBuilder::escape($type) . '` | ';
425 440
         }
426 441
         return substr($result, 0, -3);
Please login to merge, or discard this patch.