Skip to content

Commit

Permalink
PSR2
Browse files Browse the repository at this point in the history
  • Loading branch information
lochmueller committed May 17, 2019
1 parent bfe96bd commit 50fe083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Service/ReflectionService.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function getClassTagValues(string $className, string $tag)
public function getMethodTagValues(string $className, string $methodName)
{
try {
if($this->is9orHigher()) {
if ($this->is9orHigher()) {
$coreReflectionService = GeneralUtility::makeInstance(\TYPO3\CMS\Extbase\Reflection\ReflectionService::class);
$classSchema = $coreReflectionService->getClassSchema($className);
return $classSchema->getMethod($methodName)['tags'] ?? [];
Expand Down

0 comments on commit 50fe083

Please sign in to comment.