<?php
namespace DeepCopyMatcherDoctrine;
use DeepCopyMatcherMatcher;
use DoctrinePersistenceProxy;
/**
* @final
*/
class DoctrineProxyMatcher implements Matcher
{
/**
* Matches a Doctrine Proxy class.
*
* {@inheritdoc}
*/
public function matches($object, $property)
{
return $object instanceof Proxy;
}
}