Skip to content

Commit 974b90a

Browse files
committed
Fix cs
1 parent 770956e commit 974b90a

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

tests/Encoder/JsonEncoderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class JsonEncoderTest extends TestCase
1818
*
1919
* @return void
2020
*/
21-
public function testEncode()
21+
public function testEncode(): void
2222
{
2323
$encoder = new JsonEncoder();
2424
$actual = $encoder->encode(['key' => 'value']);

tests/Transformer/ErrorDetailsTransformerTest.php

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class ErrorDetailsTransformerTest extends TestCase
1818
*
1919
* @return void
2020
*/
21-
public function testTransform()
21+
public function testTransform(): void
2222
{
2323
$transformer = new ErrorDetailsResultTransformer();
2424

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

4545
static::assertSame($exptected, $actual);
4646
}
47-
48-
/**
49-
* Test.
50-
*/
51-
public function testInvalidEncoding(): void
52-
{
53-
$this->assertTrue(true);
54-
}
5547
}

0 commit comments

Comments
 (0)