Completed
Push — master ( 939bb3...fa960d )
by Pieter
11:36
created
src/OpenApiSchema/SubActions/SubAction.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,13 +58,13 @@
 block discarded – undo
58 58
 
59 59
     public function getSummary(): ?string
60 60
     {
61
-        $factory  = DocBlockFactory::createInstance();
61
+        $factory = DocBlockFactory::createInstance();
62 62
         $docComment = $this->reflectionMethod->getDocComment();
63 63
         if (!$docComment) {
64 64
             return null;
65 65
         }
66 66
         $docblock = $factory->create($docComment);
67
-        return $docblock->getDescription() ? : null;
67
+        return $docblock->getDescription() ?: null;
68 68
     }
69 69
 
70 70
     /**
Please login to merge, or discard this patch.