From 0dc9d840ab17aee6e751d4c4cfc87ef8ab86216c Mon Sep 17 00:00:00 2001 From: Will Browning Date: Sun, 21 Feb 2021 13:12:50 +0000 Subject: [PATCH] Fix style --- src/Illuminate/Queue/Console/RetryCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Queue/Console/RetryCommand.php b/src/Illuminate/Queue/Console/RetryCommand.php index eaebeab05dc1..e7c48fc52af6 100644 --- a/src/Illuminate/Queue/Console/RetryCommand.php +++ b/src/Illuminate/Queue/Console/RetryCommand.php @@ -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'])); }