Skip to content

Commit be91959

Browse files
committed
CS fixes
1 parent da36ee2 commit be91959

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

tests/Feature/ChartsTest.php

+6-4
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ public function testToVue()
243243
'type',
244244
'options',
245245
'series',
246-
] , array_keys($chart->toVue()));
246+
], array_keys($chart->toVue()));
247247
}
248248

249249
public function testToJson()
@@ -266,15 +266,17 @@ public function testToJson()
266266

267267
$response = $chart->toJson();
268268

269-
$this->assertEquals([
269+
$this->assertEquals(
270+
[
270271
'id',
271272
'height',
272273
'width',
273274
'type',
274275
'options',
275276
'series',
276-
] , array_keys(
277-
json_decode($response->content(), true))
277+
], array_keys(
278+
json_decode($response->content(), true)
279+
)
278280
);
279281
}
280282
}

0 commit comments

Comments
 (0)