We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b694bde + 4a7d201 commit 7032d70Copy full SHA for 7032d70
src/Extracting/Strategies/Metadata/GetFromDocBlocks.php
@@ -26,7 +26,7 @@ public function __invoke(Route $route, ReflectionClass $controller, ReflectionMe
26
'groupDescription' => $routeGroupDescription,
27
'title' => $routeTitle ?: $methodDocBlock->getShortDescription(),
28
'description' => $methodDocBlock->getLongDescription()->getContents(),
29
- 'authenticated' => $this->getAuthStatusFromDocBlock($classDocBlock->getTags())?:$this->getAuthStatusFromDocBlock($methodDocBlock->getTags()),
+ 'authenticated' => $this->getAuthStatusFromDocBlock($classDocBlock->getTags()) ?: $this->getAuthStatusFromDocBlock($methodDocBlock->getTags()),
30
];
31
}
32
0 commit comments