芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/xmintal-back/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyMatcher.php
class = $class; $this->property = $property; } /** * Matches a specific property of a specific class. * * {@inheritdoc} */ public function matches($object, $property) { return ($object instanceof $this->class) && $property == $this->property; } }