1 | <?php |
||
8 | class Builds implements EndpointInterface |
||
9 | { |
||
10 | use ParentHasClientAwareTrait; |
||
11 | |||
12 | /** |
||
13 | * @var Repository |
||
14 | */ |
||
15 | protected $repository; |
||
16 | |||
17 | public function __construct(Repository $repository) |
||
22 | |||
23 | public function getRequest(): RequestInterface |
||
27 | |||
28 | public function fromResponse(ResponseInterface $response): EndpointInterface |
||
34 | |||
35 | protected function createBuilds($json) |
||
43 | |||
44 | public function matrix() |
||
48 | } |
||
49 |