Skip to content

Commit

Permalink
Make Registry() also available via the client...
Browse files Browse the repository at this point in the history
  • Loading branch information
pkolmann committed Jul 5, 2024
1 parent 326920d commit 959265c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
use Gitlab\Api\Milestones;
use Gitlab\Api\ProjectNamespaces;
use Gitlab\Api\Projects;
use Gitlab\Api\Registry;
use Gitlab\Api\Repositories;
use Gitlab\Api\RepositoryFiles;
use Gitlab\Api\ResourceIterationEvents;
Expand Down Expand Up @@ -336,6 +337,15 @@ public function projects(): Projects
return new Projects($this);
}


/**
* @return Registry
*/
public function registry(): Registry
{
return new Registry($this);
}

/**
* @return Repositories
*/
Expand Down

0 comments on commit 959265c

Please sign in to comment.