Skip to content

Commit 55b532b

Browse files
committed
Types fix
1 parent aec5acd commit 55b532b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/r.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ private function __construct()
141141
public static function dump($var, $maxDepth = 2, $stripTags = true, $echo = true)
142142
{
143143
if (\extension_loaded('xdebug')) {
144-
\ini_set('xdebug.var_display_max_depth', $maxDepth);
144+
\ini_set('xdebug.var_display_max_depth', (string) $maxDepth);
145145
}
146146

147147
$var = self::export($var, $maxDepth);

0 commit comments

Comments
 (0)