%PDF- %PDF-
Direktori : /var/www/html/news/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/ |
Current File : /var/www/html/news/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php |
<?php namespace DeepCopy\Matcher\Doctrine; use DeepCopy\Matcher\Matcher; use Doctrine\Common\Persistence\Proxy; /** * Match a Doctrine Proxy class. */ class DoctrineProxyMatcher implements Matcher { /** * {@inheritdoc} */ public function matches($object, $property) { return $object instanceof Proxy; } }