Home
last modified time | relevance | path

Searched refs:TypeMatcher (Results 1 – 6 of 6) sorted by last modified time

/plugin/dw2pdf/vendor/myclabs/deep-copy/
H A DREADME.md146 - `DeepCopy\TypeMatcher` applies on any element found in graph, including array elements.
175 The `TypeMatcher` will match any element by its type (instance of a class or any value that could be parameter of
179 use DeepCopy\TypeMatcher\TypeMatcher;
182 $matcher = new TypeMatcher('Doctrine\Common\Collections\Collection');
189 - `DeepCopy\TypeFilter` applies a transformation to any element matched by `DeepCopy\TypeMatcher`
313 use DeepCopy\TypeMatcher\TypeMatcher;
319 $copier->addTypeFilter(new ReplaceFilter($callback), new TypeMatcher('MyClass'));
337 use DeepCopy\TypeMatcher\TypeMatche
[all...]
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/
H A DDeepCopy.php17 use DeepCopy\TypeMatcher\TypeMatcher; alias
64 $this->addTypeFilter(new ArrayObjectFilter($this), new TypeMatcher(ArrayObject::class));
65 $this->addTypeFilter(new DateIntervalFilter(), new TypeMatcher(DateInterval::class));
66 $this->addTypeFilter(new SplDoublyLinkedListFilter($this), new TypeMatcher(SplDoublyLinkedList::class));
113 public function addTypeFilter(TypeFilter $filter, TypeMatcher $matcher)
259 * 'matcher' with value of type {@see TypeMatcher}
269 /* @var TypeMatcher $matcher */
286 * with value of type {@see TypeMatcher} or `null`.
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/TypeMatcher/
H A DTypeMatcher.php3 namespace DeepCopy\TypeMatcher;
5 class TypeMatcher class
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/
H A DDeepCopy.php14 use DeepCopy\TypeMatcher\TypeMatcher; alias
62 $this->addTypeFilter(new DateIntervalFilter(), new TypeMatcher(DateInterval::class));
63 …$this->addTypeFilter(new SplDoublyLinkedListFilter($this), new TypeMatcher(SplDoublyLinkedList::cl…
102 public function addTypeFilter(TypeFilter $filter, TypeMatcher $matcher)
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/
H A DREADME.md151 - `DeepCopy\TypeMatcher` applies on any element found in graph, including array elements.
180 The `TypeMatcher` will match any element by its type (instance of a class or any value that could b…
184 use DeepCopy\TypeMatcher\TypeMatcher;
187 $matcher = new TypeMatcher('Doctrine\Common\Collections\Collection');
194 - `DeepCopy\TypeFilter` applies a transformation to any element matched by `DeepCopy\TypeMatcher`
318 use DeepCopy\TypeMatcher\TypeMatcher;
324 $copier->addTypeFilter(new ReplaceFilter($callback), new TypeMatcher('MyClass'));
342 use DeepCopy\TypeMatcher\TypeMatcher;
348 new TypeMatcher(m\MockInterface::class)
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/TypeMatcher/
H A DTypeMatcher.php3 namespace DeepCopy\TypeMatcher;
5 class TypeMatcher class