🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 05:33:00 | PHP 8.1.34
📂
/ (Root)
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
myclabs
/
deep-copy
/
src
/
DeepCopy
/
Matcher
📍 /opt/cpanel/ea-wappspector/vendor/myclabs/deep-copy/src/DeepCopy/Matcher
🔄 Refresh
✏️
Editing: PropertyNameMatcher.php
Read Only
<?php namespace DeepCopy\Matcher; /** * @final */ class PropertyNameMatcher implements Matcher { /** * @var string */ private $property; /** * @param string $property Property name */ public function __construct($property) { $this->property = $property; } /** * Matches a property by its name. * * {@inheritdoc} */ public function matches($object, $property) { return $property == $this->property; } }
💾 Save Changes
❌ Cancel