Skip to content

Commit 16fe9bf

Browse files
committed
minor #16790 CS: general fixes (keradus)
This PR was merged into the 2.3 branch. Discussion ---------- CS: general fixes | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | ? | Fixed tickets | N/A | License | MIT | Doc PR | N/A Commits ------- d3f671e CS: general fixes
2 parents 0ea8c29 + bbcda62 commit 16fe9bf

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Tests/Encoder/XmlEncoderTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function testAttributes()
7474
'@Type' => 'test',
7575
),
7676
'föo_bär' => 'a',
77-
'Bar' => array(1,2,3),
77+
'Bar' => array(1, 2, 3),
7878
'a' => 'b',
7979
);
8080
$expected = '<?xml version="1.0"?>'."\n".
@@ -283,7 +283,7 @@ public function testDecodeWithoutItemHash()
283283
'@Type' => 'test',
284284
),
285285
'föo_bär' => 'a',
286-
'Bar' => array(1,2,3),
286+
'Bar' => array(1, 2, 3),
287287
'a' => 'b',
288288
);
289289
$expected = array(
@@ -296,7 +296,7 @@ public function testDecodeWithoutItemHash()
296296
'@Type' => 'test',
297297
),
298298
'föo_bär' => 'a',
299-
'Bar' => array(1,2,3),
299+
'Bar' => array(1, 2, 3),
300300
'a' => 'b',
301301
);
302302
$xml = $this->encoder->encode($obj, 'xml');

Tests/Normalizer/GetSetMethodNormalizerTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ public function testFormatAttribute($attribute, $camelizedAttributes, $result)
9191
public function attributeProvider()
9292
{
9393
return array(
94-
array('attribute_test', array('attribute_test'),'AttributeTest'),
95-
array('attribute_test', array('any'),'attribute_test'),
96-
array('attribute', array('attribute'),'Attribute'),
94+
array('attribute_test', array('attribute_test'), 'AttributeTest'),
95+
array('attribute_test', array('any'), 'attribute_test'),
96+
array('attribute', array('attribute'), 'Attribute'),
9797
array('attribute', array(), 'attribute'),
9898
);
9999
}

0 commit comments

Comments
 (0)