Skip to content

Commit

Permalink
Merge pull request #13 from schulzefelix/api-limit
Browse files Browse the repository at this point in the history
style fixes
  • Loading branch information
schulzefelix authored Apr 27, 2018
2 parents 87d6109 + 23aff28 commit b7a1d4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/Api/BaseStat.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@
namespace SchulzeFelix\Stat\Api;

use Carbon\Carbon;
use SchulzeFelix\Stat\ExponentialBackoff;
use SchulzeFelix\Stat\StatClient;
use GuzzleHttp\Exception\ClientException;
use SchulzeFelix\Stat\ExponentialBackoff;
use SchulzeFelix\Stat\Exceptions\ApiException;
use SchulzeFelix\Stat\Exceptions\RequestException;
use SchulzeFelix\Stat\Objects\StatRankDistribution;
use SchulzeFelix\Stat\Objects\StatEngineRankDistribution;

Expand Down
2 changes: 1 addition & 1 deletion src/ExponentialBackoff.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function execute(callable $function, array $arguments = [])
}
}

if($exception->getCode() !== 429) {
if ($exception->getCode() !== 429) {
break;
}

Expand Down

0 comments on commit b7a1d4d

Please sign in to comment.