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 0dc9d84 commit 2fb5e44Copy full SHA for 2fb5e44
src/Illuminate/Queue/Console/RetryCommand.php
@@ -136,8 +136,8 @@ protected function refreshRetryUntil($payload)
136
137
if (Str::startsWith($payload['data']['command'], 'O:')) {
138
$instance = unserialize($payload['data']['command']);
139
- } elseif (app()->bound(Encrypter::class)) {
140
- $instance = unserialize(app()->make(Encrypter::class)->decrypt($payload['data']['command']));
+ } elseif ($this->laravel->bound(Encrypter::class)) {
+ $instance = unserialize($this->laravel->make(Encrypter::class)->decrypt($payload['data']['command']));
141
}
142
143
if (! isset($instance)) {
0 commit comments