Skip to content

Commit c8be676

Browse files
polcfabpot
authored andcommitted
Remove aligned '=>' and '='
1 parent 8711b73 commit c8be676

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Encoder/JsonDecode.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ public function decode($data, $format, array $context = array())
8888
{
8989
$context = $this->resolveContext($context);
9090

91-
$associative = $context['json_decode_associative'];
91+
$associative = $context['json_decode_associative'];
9292
$recursionDepth = $context['json_decode_recursion_depth'];
93-
$options = $context['json_decode_options'];
93+
$options = $context['json_decode_options'];
9494

9595
if (version_compare(PHP_VERSION, '5.4.0') >= 0) {
9696
$decodedData = json_decode($data, $associative, $recursionDepth, $options);

Serializer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ class Serializer implements SerializerInterface, NormalizerInterface, Denormaliz
3939
{
4040
protected $encoder;
4141
protected $decoder;
42-
protected $normalizers = array();
43-
protected $normalizerCache = array();
42+
protected $normalizers = array();
43+
protected $normalizerCache = array();
4444
protected $denormalizerCache = array();
4545

4646
public function __construct(array $normalizers = array(), array $encoders = array())

0 commit comments

Comments
 (0)