Filter.php
Same filename in this branch
- 11.1.x vendor/phpunit/php-code-coverage/src/Filter.php
- 11.1.x vendor/phpunit/phpunit/src/Util/Filter.php
- 11.1.x vendor/squizlabs/php_codesniffer/src/Filters/Filter.php
- 11.1.x core/modules/filter/src/Annotation/Filter.php
- 11.1.x core/modules/filter/src/Attribute/Filter.php
- 11.1.x core/modules/jsonapi/src/Query/Filter.php
Namespace
DeepCopy\FilterFile
-
vendor/
myclabs/ deep-copy/ src/ DeepCopy/ Filter/ Filter.php
View source
<?php
namespace DeepCopy\Filter;
/**
* Filter to apply to a property while copying an object
*/
interface Filter {
/**
* Applies the filter to the object.
*
* @param object $object
* @param string $property
* @param callable $objectCopier
*/
public function apply($object, $property, $objectCopier);
}
Interfaces
Title | Deprecated | Summary |
---|---|---|
Filter | Filter to apply to a property while copying an object |