Skip to content

Commit

Permalink
Add remaining missing return types to safe methods
Browse files Browse the repository at this point in the history
  • Loading branch information
wouterj authored and nicolas-grekas committed Apr 24, 2023
1 parent 3bec7c0 commit ef30078
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Debug/TraceableListenerTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ trait TraceableListenerTrait
/**
* Proxies all method calls to the original listener.
*/
public function __call(string $method, array $arguments)
public function __call(string $method, array $arguments): mixed
{
return $this->listener->{$method}(...$arguments);
}

public function getWrappedListener()
public function getWrappedListener(): mixed
{
return $this->listener;
}
Expand Down

0 comments on commit ef30078

Please sign in to comment.