PR: #56
The workItems() method now returns a LengthAwarePaginatedResponse instead of a plain array. Update any code that expects an array to use the paginated response object instead, for example:
// Before (2.x)
$items = $client->workItems($project);
// After (3.0)
$response = $client->workItems($project);
$items = $response->items;