Skip to content

Commit

Permalink
Code style fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
stenin-nikita committed Apr 8, 2017
1 parent aa209cb commit 26395c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions tests/CentrifugeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public function testGenerateToken()
$user_id = 1;
$info = json_encode([
'first_name' => 'Nikita',
'last_name' => 'Stenin'
'last_name' => 'Stenin',
]);
$client = '0c951315-be0e-4516-b99e-05e60b0cc307';
$channel = 'test-channel';
Expand Down Expand Up @@ -68,10 +68,10 @@ public function testCentrifugeApi()

$channels = $this->centrifuge->channels();
$this->assertEquals($channels, [
"method" => "channels",
"error" => null,
"body" => [
"data" => [],
'method' => 'channels',
'error' => null,
'body' => [
'data' => [],
],
]);

Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function setUp()
protected function getPackageProviders($app)
{
return [
CentrifugeServiceProvider::class
CentrifugeServiceProvider::class,
];
}

Expand Down

0 comments on commit 26395c9

Please sign in to comment.