Skip to content

Commit

Permalink
One last style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
abrigham1 committed Mar 19, 2019
1 parent 12f6e92 commit cd32e0b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Exceptions/EmailHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,11 @@ protected function globalThrottle()
) {
// if we are over the limit return true since this should be throttled
if (Cache::store(
config('laravelEmailExceptions.ErrorEmail.throttleCacheDriver')
)->get(
$this->globalThrottleCacheKey,
0
) >= config('laravelEmailExceptions.ErrorEmail.globalThrottleLimit')
config('laravelEmailExceptions.ErrorEmail.throttleCacheDriver')
)->get(
$this->globalThrottleCacheKey,
0
) >= config('laravelEmailExceptions.ErrorEmail.globalThrottleLimit')
) {
return true;
} else {
Expand Down

0 comments on commit cd32e0b

Please sign in to comment.