Subversion-Projekte lars-tiefland.laravel_shop

Revision

Revision 148 | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 148 Revision 991
Zeile 5... Zeile 5...
5
use ArrayObject;
5
use ArrayObject;
6
use DateInterval;
6
use DateInterval;
7
use DateTimeInterface;
7
use DateTimeInterface;
8
use DateTimeZone;
8
use DateTimeZone;
9
use DeepCopy\Exception\CloneException;
9
use DeepCopy\Exception\CloneException;
-
 
10
use DeepCopy\Filter\ChainableFilter;
10
use DeepCopy\Filter\Filter;
11
use DeepCopy\Filter\Filter;
11
use DeepCopy\Matcher\Matcher;
12
use DeepCopy\Matcher\Matcher;
12
use DeepCopy\Reflection\ReflectionHelper;
13
use DeepCopy\Reflection\ReflectionHelper;
13
use DeepCopy\TypeFilter\Date\DateIntervalFilter;
14
use DeepCopy\TypeFilter\Date\DateIntervalFilter;
14
use DeepCopy\TypeFilter\Spl\ArrayObjectFilter;
15
use DeepCopy\TypeFilter\Spl\ArrayObjectFilter;
Zeile 237... Zeile 238...
237
                    function ($object) {
238
                    function ($object) {
238
                        return $this->recursiveCopy($object);
239
                        return $this->recursiveCopy($object);
239
                    }
240
                    }
240
                );
241
                );
Zeile -... Zeile 242...
-
 
242
 
-
 
243
                if ($filter instanceof ChainableFilter) {
-
 
244
                    continue;
-
 
245
                }
241
 
246
 
242
                // If a filter matches, we stop processing this property
247
                // If a filter matches, we stop processing this property
243
                return;
248
                return;
244
            }
249
            }