Вход Регистрация
Файл: vendor/myclabs/deep-copy/src/DeepCopy/Filter/ReplaceFilter.php
Строк: 19
<?php

namespace DeepCopyFilter;

use 
DeepCopyReflectionReflectionHelper;

/**
 * @final
 */
class ReplaceFilter implements Filter
{
    
/**
     * @var callable
     */
    
protected $callback;

    
/**
     * @param callable $callable Will be called to get the new value for each property to replace
     */
    
public function __construct(callable $callable)
    {
        
$this->callback $callable;
    }

    
/**
     * Replaces the object property by the result of the callback called with the object property.
     *
     * {@inheritdoc}
     */
    
public function apply($object$property$objectCopier)
    {
        
$reflectionProperty ReflectionHelper::getProperty($object$property);
        
$reflectionProperty->setAccessible(true);

        
$value call_user_func($this->callback$reflectionProperty->getValue($object));

        
$reflectionProperty->setValue($object$value);
    }
}
Онлайн: 2
Реклама