Skip to content

Commit db640df

Browse files
author
Paul Dixon
committed
fixing code style issues with trailing commas
1 parent e5b956f commit db640df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Unit/Drivers/JsonDriverTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,9 @@ public function it_can_serialize_a_empty_json_object_to_pretty_json()
103103

104104
$this->assertEquals($expected, $driver->serialize((object) [
105105
'foo' => (object) [
106-
'bar' => true
106+
'bar' => true,
107107
],
108-
'baz' => (object) []
108+
'baz' => (object) [],
109109
]));
110110
}
111111

0 commit comments

Comments
 (0)