Skip to content

Commit

Permalink
Merge pull request #120 from emilmilow/master
Browse files Browse the repository at this point in the history
Added missing return
  • Loading branch information
marickvantuil authored Oct 5, 2023
2 parents c9b2e5e + 508d1ca commit 9cc8d58
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 9cc8d58

Please sign in to comment.