Skip to content

Commit 4889743

Browse files
committed
[VarDumper] Fix return type
Signed-off-by: Alexander M. Turek <[email protected]>
1 parent a270702 commit 4889743

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

VarDumper.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,7 @@ public static function dump(mixed $var)
4646
return (self::$handler)($var);
4747
}
4848

49-
/**
50-
* @return callable|null
51-
*/
52-
public static function setHandler(callable $callable = null)
49+
public static function setHandler(callable $callable = null): ?callable
5350
{
5451
$prevHandler = self::$handler;
5552

0 commit comments

Comments
 (0)