Skip to content

Commit 14560d2

Browse files
committed
Add mixed as the invokable action's return type
1 parent b1105c1 commit 14560d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/framework/src/Framework/Concerns/InvokableAction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ abstract class InvokableAction
1313
{
1414
abstract public function __invoke();
1515

16-
public static function call(...$args)
16+
public static function call(...$args): mixed
1717
{
1818
return (new static(...$args))->__invoke();
1919
}

0 commit comments

Comments
 (0)