PATH:
home
/
lab2454c
/
credityorkgroup.com
/
vendor
/
myclabs
/
deep-copy
/
src
/
DeepCopy
/
Filter
/
Doctrine
<?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(); } }
[+]
..
[-] DoctrineProxyFilter.php
[edit]
[-] DoctrineEmptyCollectionFilter.php
[edit]
[-] DoctrineCollectionFilter.php
[edit]