Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
jaapio committed Jan 27, 2020
1 parent 31fd6db commit 93919e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DocBlock/StandardTagFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ private function createTag(string $body, string $name, TypeContext $context) : T
try {
/** @var callable $callable */
$callable = [$handlerClassName, 'create'];
$tag = call_user_func_array($callable, $arguments);
$tag = call_user_func_array($callable, $arguments);
return $tag ?? InvalidTag::create($body, $name);
} catch (InvalidArgumentException $e) {
return InvalidTag::create($body, $name)->withError($e);
Expand Down

0 comments on commit 93919e3

Please sign in to comment.