Skip to content

Commit

Permalink
Fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
odan committed Jun 17, 2020
1 parent 770956e commit 974b90a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
2 changes: 1 addition & 1 deletion tests/Encoder/JsonEncoderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class JsonEncoderTest extends TestCase
*
* @return void
*/
public function testEncode()
public function testEncode(): void
{
$encoder = new JsonEncoder();
$actual = $encoder->encode(['key' => 'value']);
Expand Down
10 changes: 1 addition & 9 deletions tests/Transformer/ErrorDetailsTransformerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class ErrorDetailsTransformerTest extends TestCase
*
* @return void
*/
public function testTransform()
public function testTransform(): void
{
$transformer = new ErrorDetailsResultTransformer();

Expand All @@ -44,12 +44,4 @@ public function testTransform()

static::assertSame($exptected, $actual);
}

/**
* Test.
*/
public function testInvalidEncoding(): void
{
$this->assertTrue(true);
}
}

0 comments on commit 974b90a

Please sign in to comment.