1 | <?php |
||
8 | class Travis implements EndpointInterface |
||
9 | { |
||
10 | use ClientAwareTrait; |
||
11 | |||
12 | /** |
||
13 | * @param Client $client |
||
14 | */ |
||
15 | public function __construct(Client $client) |
||
19 | |||
20 | public function repository(string $repository): Repository |
||
24 | |||
25 | public function getRequest(): RequestInterface |
||
29 | |||
30 | public function fromResponse(ResponseInterface $response): EndpointInterface |
||
34 | } |
||
35 |