@@ -66,13 +66,16 @@ Before dumping it, you can further limit the resulting
66
66
:class: `Symfony\\ Component\\ VarDumper\\ Cloner\\ Data ` object using the following methods:
67
67
68
68
:method: `Symfony\\ Component\\ VarDumper\\ Cloner\\ Data::withMaxDepth `
69
- Allows limiting dumps in the depth dimension.
69
+ Limits dumps in the depth dimension.
70
70
71
71
:method: `Symfony\\ Component\\ VarDumper\\ Cloner\\ Data::withMaxItemsPerDepth `
72
72
Limits the number of items per depth level.
73
73
74
74
:method: `Symfony\\ Component\\ VarDumper\\ Cloner\\ Data::withRefHandles `
75
- Allows removing internal objects' handles for sparser output (useful for tests).
75
+ Removes internal objects' handles for sparser output (useful for tests).
76
+
77
+ :method: `Symfony\\ Component\\ VarDumper\\ Cloner\\ Data::seek `
78
+ Selects only subparts of already cloned arrays, objects or resources.
76
79
77
80
Unlike the previous limits on cloners that remove data on purpose, these can
78
81
be changed back and forth before dumping since they do not affect the
@@ -82,7 +85,11 @@ intermediate representation internally.
82
85
83
86
When no limit is applied, a :class: `Symfony\\ Component\\ VarDumper\\ Cloner\\ Data `
84
87
object is as accurate as the native :phpfunction: `serialize ` function,
85
- and thus could be for purposes beyond dumping for debugging.
88
+ and thus could be used for purposes beyond debugging.
89
+
90
+ .. versionadded :: 3.2
91
+ The :method: `Symfony\\ Component\\ VarDumper\\ Cloner\\ Data::seek ` method has been
92
+ added in Symfony 3.2
86
93
87
94
Dumpers
88
95
-------
0 commit comments