From 1cd30acc2a4bbaca734daa787a82f5985f529f96 Mon Sep 17 00:00:00 2001 From: Tyson Andre Date: Sun, 27 Jan 2019 17:37:24 -0500 Subject: [PATCH] Remove a harmless duplicate array key from VarDumper This has the same field order as the original code. Detected via static analysis. --- src/Symfony/Component/VarDumper/Caster/IntlCaster.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Symfony/Component/VarDumper/Caster/IntlCaster.php b/src/Symfony/Component/VarDumper/Caster/IntlCaster.php index 7794d6cbcc..31d5cb395f 100644 --- a/src/Symfony/Component/VarDumper/Caster/IntlCaster.php +++ b/src/Symfony/Component/VarDumper/Caster/IntlCaster.php @@ -132,7 +132,6 @@ class IntlCaster Caster::PREFIX_VIRTUAL.'repeated_wall_time_option' => $c->getRepeatedWallTimeOption(), Caster::PREFIX_VIRTUAL.'skipped_wall_time_option' => $c->getSkippedWallTimeOption(), Caster::PREFIX_VIRTUAL.'time' => $c->getTime(), - Caster::PREFIX_VIRTUAL.'type' => $c->getType(), Caster::PREFIX_VIRTUAL.'in_daylight_time' => $c->inDaylightTime(), Caster::PREFIX_VIRTUAL.'is_lenient' => $c->isLenient(), Caster::PREFIX_VIRTUAL.'time_zone' => ($filter & Caster::EXCLUDE_VERBOSE) ? new CutStub($c->getTimeZone()) : $c->getTimeZone(),