/
home
/
sjslayjy
/
public_html
/
drone
/
vendor
/
myclabs
/
deep-copy
/
src
/
DeepCopy
/
Filter
/
Doctrine
/
Upload File
HOME
<?php namespace DeepCopy\Filter\Doctrine; use DeepCopy\Filter\Filter; /** * @final */ class DoctrineProxyFilter implements Filter { /** * Triggers the magic method __load() on a Doctrine Proxy class to load the * actual entity from the database. * * {@inheritdoc} */ public function apply($object, $property, $objectCopier) { $object->__load(); } }