Resources/DeepCopy/Filter/KeepFilter.php
2025-04-02 14:15:06 +00:00

17 lines
263 B
PHP

<?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
}
}