Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

PropertyTypeMatcher.php

Namespace

DeepCopy\Matcher

File

vendor/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyTypeMatcher.php

View source
<?php

namespace DeepCopy\Matcher;

use DeepCopy\Reflection\ReflectionHelper;
use ReflectionException;

/**
 * Matches a property by its type.
 *
 * It is recommended to use {@see DeepCopy\TypeFilter\TypeFilter} instead, as it applies on all occurrences
 * of given type in copied context (eg. array elements), not just on object properties.
 *
 * @final
 */
class PropertyTypeMatcher implements Matcher {
    
    /**
     * @var string
     */
    private $propertyType;
    
    /**
     * @param string $propertyType Property type
     */
    public function __construct($propertyType) {
        $this->propertyType = $propertyType;
    }
    
    /**
     * {@inheritdoc}
     */
    public function matches($object, $property) {
        try {
            $reflectionProperty = ReflectionHelper::getProperty($object, $property);
        } catch (ReflectionException $exception) {
            return false;
        }
        $reflectionProperty->setAccessible(true);
        // Uninitialized properties (for PHP >7.4)
        if (method_exists($reflectionProperty, 'isInitialized') && !$reflectionProperty->isInitialized($object)) {
            // null instanceof $this->propertyType
            return false;
        }
        return $reflectionProperty->getValue($object) instanceof $this->propertyType;
    }

}

Classes

Title Deprecated Summary
PropertyTypeMatcher Matches a property by its type.

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal