Skip to content

Commit bbcda62

Browse files
committed
CS: general fixes
1 parent 4b97945 commit bbcda62

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)