Skip to content

Commit f433ab7

Browse files
committed
Cleanup php-cs-fixer
1 parent 5e81929 commit f433ab7

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Diff for: src/Api/Projects.php

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
namespace PrivatePackagist\ApiClient\Api;
1111

12-
use PrivatePackagist\ApiClient\Api\Projects\MirroredRepositories;
1312
use PrivatePackagist\ApiClient\Exception\InvalidArgumentException;
1413

1514
class Projects extends AbstractApi

Diff for: tests/Api/MirroredRepositoriesTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function testShow()
4444
public function testCreate()
4545
{
4646
$expected = $this->getMirroredRepositoryDefinition();
47-
$data = json_decode( json_encode($expected), true);
47+
$data = json_decode(json_encode($expected), true);
4848
unset($data['id']);
4949

5050
/** @var MirroredRepositories&\PHPUnit_Framework_MockObject_MockObject $api */
@@ -60,7 +60,7 @@ public function testCreate()
6060
public function testEdit()
6161
{
6262
$expected = $this->getMirroredRepositoryDefinition();
63-
$data = json_decode( json_encode($expected), true);
63+
$data = json_decode(json_encode($expected), true);
6464
unset($data['id']);
6565

6666
/** @var MirroredRepositories&\PHPUnit_Framework_MockObject_MockObject $api */

0 commit comments

Comments
 (0)