Skip to content

Commit 2fb5e44

Browse files
committed
formatting
1 parent 0dc9d84 commit 2fb5e44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Illuminate/Queue/Console/RetryCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ protected function refreshRetryUntil($payload)
136136

137137
if (Str::startsWith($payload['data']['command'], 'O:')) {
138138
$instance = unserialize($payload['data']['command']);
139-
} elseif (app()->bound(Encrypter::class)) {
140-
$instance = unserialize(app()->make(Encrypter::class)->decrypt($payload['data']['command']));
139+
} elseif ($this->laravel->bound(Encrypter::class)) {
140+
$instance = unserialize($this->laravel->make(Encrypter::class)->decrypt($payload['data']['command']));
141141
}
142142

143143
if (! isset($instance)) {

0 commit comments

Comments
 (0)