Skip to content

Commit afbe303

Browse files
authored
Merge pull request #3 from slvler/analysis-jlZEoB
Apply fixes from StyleCI
2 parents 6261236 + 0e64c81 commit afbe303

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

src/Exception/ErrorException.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22

33
namespace Slvler\Ether\Exception;
44

5-
class ErrorException {}
5+
class ErrorException
6+
{
7+
}

src/Exception/MissingArgumentException.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22

33
namespace Slvler\Ether\Exception;
44

5-
class MissingArgumentException {}
5+
class MissingArgumentException
6+
{
7+
}

src/Services/EtherScanService.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ class EtherScanService
1515

1616
public function __construct()
1717
{
18-
1918
$apiKey = config('etherscan.ether.api_key');
2019
if (empty($apiKey) || ! isset($apiKey)) {
2120
throw MissingApiKey::create();

tests/Unit/TestCase.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,7 @@ protected function getPackageProviders($app)
1818
];
1919
}
2020

21-
protected function getEnvironmentSetUp($app) {}
21+
protected function getEnvironmentSetUp($app)
22+
{
23+
}
2224
}

0 commit comments

Comments
 (0)