We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 226f9bd commit 9ab5a81Copy full SHA for 9ab5a81
src/CloudTasksQueue.php
@@ -95,7 +95,7 @@ function ($payload, $queue) {
95
*/
96
public function pushRaw($payload, $queue = null, array $options = [])
97
{
98
- $delay = ! empty($options['delay']) ? $options['delay'] : 0;
+ $delay = !empty($options['delay']) ? $options['delay'] : 0;
99
100
$this->pushToCloudTasks($queue, $payload, $delay);
101
}
@@ -270,7 +270,7 @@ public function getHandler(): string
270
return Config::getHandler($this->config['handler']);
271
272
273
- public function getAudience(): string
+ public function getAudience(): ?string
274
275
return Config::getAudience($this->config);
276
0 commit comments