Skip to content

Commit 3fc9a5d

Browse files
authored
Update readme.MD PHP example section
There is no need to call `$this->client->createTask($queuePath, $task);` like this. Instead, we can call `$client->createTask($queuePath, $task);`
1 parent e41c0e3 commit 3fc9a5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

readme.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ $task = new Task();
239239
$task->setHttpRequest($http);
240240
$queuePath = $client->queueName('dev', 'here', 'tasks');
241241

242-
$response = $this->client->createTask($queuePath, $task);
242+
$response = $client->createTask($queuePath, $task);
243243
```
244244

245245
### JavaScript example

0 commit comments

Comments
 (0)