We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a78aa12 commit 0dc9d84Copy full SHA for 0dc9d84
src/Illuminate/Queue/Console/RetryCommand.php
@@ -136,7 +136,7 @@ protected function refreshRetryUntil($payload)
136
137
if (Str::startsWith($payload['data']['command'], 'O:')) {
138
$instance = unserialize($payload['data']['command']);
139
- } else if (app()->bound(Encrypter::class)) {
+ } elseif (app()->bound(Encrypter::class)) {
140
$instance = unserialize(app()->make(Encrypter::class)->decrypt($payload['data']['command']));
141
}
142
0 commit comments