| 1 | <?php |
||
| 8 | final class DockerRegistryCatalogRepository |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var DockerRegistryClientInterface |
||
| 12 | */ |
||
| 13 | private $client; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * DockerRegistryCatalogRepository constructor. |
||
| 17 | * |
||
| 18 | * @param DockerRegistryClientInterface $client |
||
| 19 | */ |
||
| 20 | public function __construct(DockerRegistryClientInterface $client) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * List all available repositories. |
||
| 27 | * |
||
| 28 | * @return Collection |
||
| 29 | */ |
||
| 30 | public function list(): Collection |
||
| 38 | } |
||
| 39 |