class ProxyManagerCaster
@author Nicolas Grekas <p@tchwork.com>
@final
Hierarchy
- class \Symfony\Component\VarDumper\Caster\ProxyManagerCaster
Expanded class hierarchy of ProxyManagerCaster
File
-
vendor/
symfony/ var-dumper/ Caster/ ProxyManagerCaster.php, line 22
Namespace
Symfony\Component\VarDumper\CasterView source
class ProxyManagerCaster {
public static function castProxy(ProxyInterface $c, array $a, Stub $stub, bool $isNested) : array {
if ($parent = get_parent_class($c)) {
$stub->class .= ' - ' . $parent;
}
$stub->class .= '@proxy';
return $a;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
ProxyManagerCaster::castProxy | public static | function |