1: <?php
2:
3: namespace Crowdsdom\Labor\Models;
4:
5: class Job extends Base\Job
6: {
7: const ENDPOINT = '/Jobs';
8:
9: public function tasks($id)
10: {
11: $this->response = $this->client->getGuzzle()->request('GET', static::ENDPOINT . "/{$id}/tasks", []);
12: return json_decode($this->response->getBody()->getContents(), true);
13: }
14: }
15: