We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 269d41b commit fc18d8aCopy full SHA for fc18d8a
src/functions.php
@@ -30,6 +30,7 @@ function get_debug_type($value): string
30
case is_array($value): return 'array';
31
case is_int($value): return 'int';
32
case is_float($value): return 'float';
33
+ case $value instanceof __PHP_Incomplete_Class: return '__PHP_Incomplete_Class';
34
case is_object($value):
35
$class = get_class($value);
36
0 commit comments