PATH:
home
/
lab2454c
/
westernclear.net
/
vendor
/
myclabs
/
deep-copy
/
src
/
DeepCopy
/
Filter
<?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); }
[-] ReplaceFilter.php
[edit]
[-] Filter.php
[edit]
[+]
..
[-] KeepFilter.php
[edit]
[+]
Doctrine
[-] SetNullFilter.php
[edit]