Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Hristo committed Apr 21, 2022
1 parent fe9c335 commit 03390ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Illuminate/Queue/CallQueuedHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ protected function getCommand(array $data)
*/
protected function dispatchThroughMiddleware(Job $job, $command)
{
if($command instanceof \__PHP_Incomplete_Class) {
if ($command instanceof \__PHP_Incomplete_Class) {
throw new \Exception('Tried running job that has no matching class ' . json_encode($command));
}

Expand Down Expand Up @@ -260,7 +260,7 @@ public function failed(array $data, $e, string $uuid)
$this->ensureUniqueJobLockIsReleased($command);
}

if($command instanceof \__PHP_Incomplete_Class) {
if ($command instanceof \__PHP_Incomplete_Class) {
return;
}

Expand Down

0 comments on commit 03390ee

Please sign in to comment.