for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DeepCopy\Filter\Doctrine;
use DeepCopy\Filter\Filter;
/**
* Trigger the magic method __load() on a Doctrine Proxy class to load the
* actual entity from the database.
*/
class DoctrineProxyFilter implements Filter
{
* {@inheritdoc}
public function apply($object, $property, $objectCopier)
$object->__load();
}