Skip to content

Commit 93919e3

Browse files
committed
Fix code style
1 parent 31fd6db commit 93919e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DocBlock/StandardTagFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ private function createTag(string $body, string $name, TypeContext $context) : T
227227
try {
228228
/** @var callable $callable */
229229
$callable = [$handlerClassName, 'create'];
230-
$tag = call_user_func_array($callable, $arguments);
230+
$tag = call_user_func_array($callable, $arguments);
231231
return $tag ?? InvalidTag::create($body, $name);
232232
} catch (InvalidArgumentException $e) {
233233
return InvalidTag::create($body, $name)->withError($e);

0 commit comments

Comments
 (0)