class DoctrineProxyMatcher
@final
Hierarchy
- class \DeepCopy\Matcher\Doctrine\DoctrineProxyMatcher implements \DeepCopy\Matcher\Matcher
Expanded class hierarchy of DoctrineProxyMatcher
File
-
vendor/
myclabs/ deep-copy/ src/ DeepCopy/ Matcher/ Doctrine/ DoctrineProxyMatcher.php, line 11
Namespace
DeepCopy\Matcher\DoctrineView source
class DoctrineProxyMatcher implements Matcher {
/**
* Matches a Doctrine Proxy class.
*
* {@inheritdoc}
*/
public function matches($object, $property) {
return $object instanceof Proxy;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
DoctrineProxyMatcher::matches | public | function | Matches a Doctrine Proxy class. | Overrides Matcher::matches |