Lines Matching refs:a

74 Now you're in for a big mess :(
97 keeps a hash map of all instances and thus preserves the object graph.
141 The method to add a filter is `DeepCopy\DeepCopy::addFilter($filter, $matcher)`,
150 - `DeepCopy\Matcher` applies on a object attribute.
156 The `PropertyNameMatcher` will match a property by its name:
161 // Will apply a filter to any property of any objects named "id"
168 The `PropertyMatcher` will match a specific property of a specific class:
173 // Will apply a filter to the property "id" of any objects of the class "MyClass"
180 The `TypeMatcher` will match any element by its type (instance of a class or any value that could b…
186 // Will apply a filter to any object that is an instance of Doctrine\Common\Collections\Collection
193 - `DeepCopy\Filter` applies a transformation to the object attribute matched by `DeepCopy\Matcher`
194 - `DeepCopy\TypeFilter` applies a transformation to any element matched by `DeepCopy\TypeMatcher`
199 Let's say for example that you are copying a database record (or a Doctrine entity), so you want th…
221 If you want a property to remain untouched (for example, an association to an object):
254 If you use Doctrine and want to copy an entity who contains a `Collection` that you want to be rese…
273 … and use cloning on lazy loaded entities, you might encounter errors mentioning missing fields on a
289 // $copy should now contain a clone of all entities, including those that were not yet fully loaded.
295 1. If you want to replace the value of a property:
358 The following structures cannot be deep-copied with PHP Reflection. As a result they are shallow cl…
362 - Use a filter with a type matcher