Lines Matching refs:use

52 use DeepCopy\DeepCopy;
69 You use [`__clone()`](http://www.php.net/manual/en/language.oop5.cloning.php#object.clone) and impl…
99 To use it:
102 use function DeepCopy\deep_copy;
110 use DeepCopy\DeepCopy;
122 use DeepCopy\DeepCopy;
159 use DeepCopy\Matcher\PropertyNameMatcher;
171 use DeepCopy\Matcher\PropertyMatcher;
184 use DeepCopy\TypeMatcher\TypeMatcher;
203 use DeepCopy\DeepCopy;
204 use DeepCopy\Filter\SetNullFilter;
205 use DeepCopy\Matcher\PropertyNameMatcher;
224 use DeepCopy\DeepCopy;
225 use DeepCopy\Filter\KeepFilter;
226 use DeepCopy\Matcher\PropertyMatcher;
238 If you use Doctrine and want to copy an entity, you will need to use the `DoctrineCollectionFilter`:
241 use DeepCopy\DeepCopy;
242 use DeepCopy\Filter\Doctrine\DoctrineCollectionFilter;
243 use DeepCopy\Matcher\PropertyTypeMatcher;
254 If you use Doctrine and want to copy an entity who contains a `Collection` that you want to be rese…
258 use DeepCopy\DeepCopy;
259 use DeepCopy\Filter\Doctrine\DoctrineEmptyCollectionFilter;
260 use DeepCopy\Matcher\PropertyMatcher;
273 If you use Doctrine and use cloning on lazy loaded entities, you might encounter errors mentioning …
275 You can use the `DoctrineProxyFilter` to load the actual entity behind the Doctrine proxy class.
280 use DeepCopy\DeepCopy;
281 use DeepCopy\Filter\Doctrine\DoctrineProxyFilter;
282 use DeepCopy\Matcher\Doctrine\DoctrineProxyMatcher;
298 use DeepCopy\DeepCopy;
299 use DeepCopy\Filter\ReplaceFilter;
300 use DeepCopy\Matcher\PropertyMatcher;
316 use DeepCopy\DeepCopy;
317 use DeepCopy\TypeFilter\ReplaceFilter;
318 use DeepCopy\TypeMatcher\TypeMatcher;
340 use DeepCopy\DeepCopy;
341 use DeepCopy\TypeFilter\ShallowCopyFilter;
342 use DeepCopy\TypeMatcher\TypeMatcher;
343 use Mockery as m;