Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Dec 30, 2024
1 parent 6261236 commit 0e64c81
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/Exception/ErrorException.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@

namespace Slvler\Ether\Exception;

class ErrorException {}
class ErrorException
{
}
4 changes: 3 additions & 1 deletion src/Exception/MissingArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@

namespace Slvler\Ether\Exception;

class MissingArgumentException {}
class MissingArgumentException
{
}
1 change: 0 additions & 1 deletion src/Services/EtherScanService.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ class EtherScanService

public function __construct()
{

$apiKey = config('etherscan.ether.api_key');
if (empty($apiKey) || ! isset($apiKey)) {
throw MissingApiKey::create();
Expand Down
4 changes: 3 additions & 1 deletion tests/Unit/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,7 @@ protected function getPackageProviders($app)
];
}

protected function getEnvironmentSetUp($app) {}
protected function getEnvironmentSetUp($app)
{
}
}

0 comments on commit 0e64c81

Please sign in to comment.