📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 21:05:41
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
myclabs
/
deep-copy
/
src
/
DeepCopy
/
Matcher
✏️
Editing: PropertyNameMatcher.php
<?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