| Conditions | 3 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 59 | public function getSummary(): ?string |
||
| 60 | { |
||
| 61 | $factory = DocBlockFactory::createInstance(); |
||
| 62 | $docComment = $this->reflectionMethod->getDocComment(); |
||
| 63 | var_dump($docComment); |
||
|
|
|||
| 64 | if (!$docComment) { |
||
| 65 | return null; |
||
| 66 | } |
||
| 67 | $docblock = $factory->create($docComment); |
||
| 68 | return $docblock->getDescription() ? : null; |
||
| 69 | } |
||
| 103 |