Resources/DeepCopy/Filter/KeepFilter.php

17 lines
263 B
PHP
Executable File

<?php
namespace DeepCopy\Filter;
class KeepFilter implements Filter
{
/**
* Keeps the value of the object property.
*
* {@inheritdoc}
*/
public function apply($object, $property, $objectCopier)
{
// Nothing to do
}
}