Skip to content

Commit 26e77f6

Browse files
committed
fix syle
1 parent e59a8e5 commit 26e77f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: tests/HybridRelationsTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -227,15 +227,15 @@ public function testHybridSync()
227227
$this->assertEquals(2, $client->usersMysql->count());
228228

229229
// sync 2 Clients
230-
$user->clients()->sync([$client->_id, $otherClient->_id ]);
230+
$user->clients()->sync([$client->_id, $otherClient->_id]);
231231
$user = MysqlUser::find($user->id);
232232
$this->assertEquals(2, $user->clients->count());
233233
// Sync 1 Client
234234
$user->clients()->sync([$client->_id]);
235235
$user = MysqlUser::find($user->id);
236236
$this->assertEquals(1, $user->clients->count());
237237
// Sync 2 Clients again
238-
$user->clients()->sync([$client->_id, $otherClient->_id ]);
238+
$user->clients()->sync([$client->_id, $otherClient->_id]);
239239
$user = MysqlUser::find($user->id);
240240
$this->assertEquals(2, $user->clients->count());
241241
}

0 commit comments

Comments
 (0)