feat: Add user endpoint

This commit is contained in:
Michael Gerdemann
2020-01-19 15:53:23 +01:00
parent 6e6b0b6a29
commit 5c2450116b
7 changed files with 421 additions and 27 deletions

View File

@ -9,6 +9,7 @@ use Avency\Gitea\Endpoint\EndpointInterface;
use Avency\Gitea\Endpoint\Miscellaneous;
use Avency\Gitea\Endpoint\Organizations;
use Avency\Gitea\Endpoint\Repositories;
use Avency\Gitea\Endpoint\User;
use Exception;
use Psr\Http\Message\ResponseInterface;
@ -19,6 +20,7 @@ use Psr\Http\Message\ResponseInterface;
* @method Miscellaneous miscellaneous()
* @method Organizations organizations()
* @method Repositories repositories()
* @method User user()
*/
class Client
{