@@ -217,9 +217,9 @@ output produced by the different casters.
217
217
If ``DUMP_STRING_LENGTH `` is set, then the length of a string is displayed
218
218
next to its content::
219
219
220
+ use Symfony\Component\VarDumper\Cloner\VarCloner;
220
221
use Symfony\Component\VarDumper\Dumper\AbstractDumper;
221
222
use Symfony\Component\VarDumper\Dumper\CliDumper;
222
- use Symfony\Component\VarDumper\Cloner\VarCloner;
223
223
224
224
$varCloner = new VarCloner();
225
225
$var = ['test'];
@@ -242,9 +242,9 @@ next to its content::
242
242
If ``DUMP_LIGHT_ARRAY `` is set, then arrays are dumped in a shortened format
243
243
similar to PHP's short array notation::
244
244
245
+ use Symfony\Component\VarDumper\Cloner\VarCloner;
245
246
use Symfony\Component\VarDumper\Dumper\AbstractDumper;
246
247
use Symfony\Component\VarDumper\Dumper\CliDumper;
247
- use Symfony\Component\VarDumper\Cloner\VarCloner;
248
248
249
249
$varCloner = new VarCloner();
250
250
$var = ['test'];
@@ -267,9 +267,9 @@ similar to PHP's short array notation::
267
267
If you would like to use both options, then you can combine them by
268
268
using the logical OR operator ``| ``::
269
269
270
+ use Symfony\Component\VarDumper\Cloner\VarCloner;
270
271
use Symfony\Component\VarDumper\Dumper\AbstractDumper;
271
272
use Symfony\Component\VarDumper\Dumper\CliDumper;
272
- use Symfony\Component\VarDumper\Cloner\VarCloner;
273
273
274
274
$varCloner = new VarCloner();
275
275
$var = ['test'];
0 commit comments