Skip to content

Commit

Permalink
CS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
marcguyer committed Jan 19, 2020
1 parent e76cba9 commit 1cda481
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions test/FunctionalTest/PingTest.php
Expand Up @@ -7,13 +7,10 @@
use PHPUnit\Framework\Assert;

/**
* Tests only PING
* Tests only PING.
*/
class PingTest extends AbstractEndpointTest
{
/**
* @return array
*/
public function endpointProvider(): array
{
return [
Expand All @@ -23,9 +20,9 @@ public function endpointProvider(): array
[
self::isSuccess(),
self::bodyMatchesJson([
'ack' => Assert::greaterThanOrEqual(time())
])
]
'ack' => Assert::greaterThanOrEqual(time()),
]),
],
],
];
}
Expand Down

0 comments on commit 1cda481

Please sign in to comment.