<?phpnamespaceDeepCopy\Filter;
/**
* Filter to apply to a property while copying an object
*/interfaceFilter{
/**
* Applies the filter to the object.
*
* @param object $object
* @param string $property
* @param callable $objectCopier
*/publicfunctionapply($object, $property, $objectCopier);
}