@@ -58,14 +58,14 @@ |
||
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 | /** |