Passed
Push — master ( af5ff0...adbbe6 )
by Pieter
02:24
created
src/OpenApiSchema/SubActions/SubAction.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,14 +58,14 @@
 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
         var_dump($docComment);
64 64
         if (!$docComment) {
65 65
             return null;
66 66
         }
67 67
         $docblock = $factory->create($docComment);
68
-        return $docblock->getDescription() ? : null;
68
+        return $docblock->getDescription() ?: null;
69 69
     }
70 70
 
71 71
     /**
Please login to merge, or discard this patch.