Skip to content

Commit d1e6202

Browse files
authored
Merge pull request #124 from voku/analysis-4waYBw
Apply fixes from StyleCI
2 parents a3aacf7 + 87b205e commit d1e6202

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

tests/Account.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ public function __construct($accountName)
1616
* @var string
1717
*/
1818
public $accountName;
19-
}
19+
}

tests/AccountCollection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ public function getType(): string
1313
{
1414
return Account::class;
1515
}
16-
}
16+
}

tests/GetAccountsResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
*/
1212
class GetAccountsResponse extends Arrayy
1313
{
14-
}
14+
}

tests/JsonMapperTest.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@
22

33
namespace Arrayy\tests;
44

5-
use function PHPUnit\Framework\assertSame;
6-
75
/**
86
* @internal
97
*/
108
final class JsonMapperTest extends \PHPUnit\Framework\TestCase
119
{
12-
public function testJsonMappingV1() {
10+
public function testJsonMappingV1()
11+
{
1312
$data = ['accounts' => [new Account('Foo'), new Account('Bar')]];
1413
$json = json_encode($data);
1514

0 commit comments

Comments
 (0)