Skip to content

Commit 9cc8d58

Browse files
Merge pull request #120 from emilmilow/master
Added missing return
2 parents c9b2e5e + 508d1ca commit 9cc8d58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CloudTasksQueue.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public function pushRaw($payload, $queue = null, array $options = [])
9797
{
9898
$delay = ! empty($options['delay']) ? $options['delay'] : 0;
9999

100-
$this->pushToCloudTasks($queue, $payload, $delay);
100+
return $this->pushToCloudTasks($queue, $payload, $delay);
101101
}
102102

103103
/**

0 commit comments

Comments
 (0)