Skip to content

Commit ef30078

Browse files
wouterjnicolas-grekas
authored andcommitted
Add remaining missing return types to safe methods
1 parent 3bec7c0 commit ef30078

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Debug/TraceableListenerTrait.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ trait TraceableListenerTrait
3030
/**
3131
* Proxies all method calls to the original listener.
3232
*/
33-
public function __call(string $method, array $arguments)
33+
public function __call(string $method, array $arguments): mixed
3434
{
3535
return $this->listener->{$method}(...$arguments);
3636
}
3737

38-
public function getWrappedListener()
38+
public function getWrappedListener(): mixed
3939
{
4040
return $this->listener;
4141
}

0 commit comments

Comments
 (0)