mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-10 21:08:41 +00:00
17 lines
263 B
PHP
Executable File
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
|
|
}
|
|
}
|