[VarDumper] Fix dumping of non-nested stubs

This commit is contained in:
Nicolas Grekas 2017-05-05 13:16:12 +02:00
parent fd9459cdfd
commit dd5b7a632b
1 changed files with 3 additions and 1 deletions

View File

@ -29,8 +29,10 @@ class StubCaster
$stub->handle = $c->handle;
$stub->cut = $c->cut;
return array();
$a = array();
}
return $a;
}
public static function cutInternals($obj, array $a, Stub $stub, $isNested)