Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
willbrowningme committed Feb 21, 2021
1 parent a78aa12 commit 0dc9d84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Queue/Console/RetryCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ protected function refreshRetryUntil($payload)

if (Str::startsWith($payload['data']['command'], 'O:')) {
$instance = unserialize($payload['data']['command']);
} else if (app()->bound(Encrypter::class)) {
} elseif (app()->bound(Encrypter::class)) {
$instance = unserialize(app()->make(Encrypter::class)->decrypt($payload['data']['command']));
}

Expand Down

0 comments on commit 0dc9d84

Please sign in to comment.