Skip to content

Commit

Permalink
Added missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
emilmilow committed Sep 20, 2023
1 parent c9b2e5e commit 508d1ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CloudTasksQueue.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public function pushRaw($payload, $queue = null, array $options = [])
{
$delay = ! empty($options['delay']) ? $options['delay'] : 0;

$this->pushToCloudTasks($queue, $payload, $delay);
return $this->pushToCloudTasks($queue, $payload, $delay);
}

/**
Expand Down

0 comments on commit 508d1ca

Please sign in to comment.