Skip to content

Commit

Permalink
update var type
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsn committed Oct 14, 2023
1 parent 47907c9 commit 8c92c0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Models/QueueJobModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function getFromQueue(string $name): ?QueueJob
if ($query === false) {
return null;
}
/** @var QueueJob $row */
/** @var QueueJob|null $row */
$row = $query->getCustomRowObject(0, QueueJob::class);

// Remove row
Expand Down

0 comments on commit 8c92c0b

Please sign in to comment.