Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
{
}
}
Loading