mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Added case for unknown
type. Fixes #3966
This commit is contained in:
parent
c01aacf72d
commit
2150e8dce5
2 changed files with 7 additions and 0 deletions
|
@ -408,6 +408,11 @@ TEXT;
|
|||
false
|
||||
TEXT;
|
||||
$this->assertTextEquals($expected, $result);
|
||||
|
||||
$file = fopen('php://output', 'w');
|
||||
fclose($file);
|
||||
$result = Debugger::exportVar($file);
|
||||
$this->assertTextEquals('unknown', $result);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -500,6 +500,8 @@ class Debugger {
|
|||
return strtolower(gettype($var));
|
||||
case 'null':
|
||||
return 'null';
|
||||
case 'unknown':
|
||||
return 'unknown';
|
||||
default:
|
||||
return self::_object($var, $depth - 1, $indent + 1);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue