Admin
dashboard
file manager
command
php exec
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
myclabs
/
deep-copy
/
src
/
DeepCopy
/
Matcher
/
Doctrine
path:
go
upload
mkdir
name
type
size
perms
modified
actions
[parent directory]
DoctrineProxyMatcher.php
file
360 B
0644
2026-08-11 10:17:44
edit
delete
rename
editing: DoctrineProxyMatcher.php
<?php namespace DeepCopy\Matcher\Doctrine; use DeepCopy\Matcher\Matcher; use Doctrine\Persistence\Proxy; /** * @final */ class DoctrineProxyMatcher implements Matcher { /** * Matches a Doctrine Proxy class. * * {@inheritdoc} */ public function matches($object, $property) { return $object instanceof Proxy; } }
save
cancel