Skip to content

Commit

Permalink
change return type
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-rubel committed May 23, 2022
1 parent 56ebec1 commit d7a43f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Helpers/helpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
* @param array $parameters
* @param string|null $context
*
* @return mixed
* @return CallProxy
*/
function call(string|object $class, array $parameters = [], ?string $context = null): mixed
function call(string|object $class, array $parameters = [], ?string $context = null): CallProxy
{
return new CallProxy($class, $parameters, $context);
}
Expand Down

0 comments on commit d7a43f1

Please # to comment.