Open
Description
There is a method in the client index that returns the index endpoint.
I would like a similar method for the task endpoint, although I'd prefer that the method name be more explicit. But I'd be okay with just having access to it.
$taskApi = $client->getTasksEndpoint();
$taskApi->get($taskUid);
In short, I'd like a way to access Tasks
in the HandlesTasks trait.
protected Tasks $tasks; /* access this from the application */
public function getTask($uid): array
{
return $this->tasks->get($uid);
}