From 784f76b767d5e824a16b30ad715e7f73aae7da96 Mon Sep 17 00:00:00 2001 From: Benjamin Blake Date: Sun, 1 Mar 2020 17:05:16 -0700 Subject: [PATCH] Removed a few unneeded "use" statements from files --- src/Api/Abstracts/AbstractAllApiRequester.php | 1 - src/Client.php | 4 ---- 2 files changed, 5 deletions(-) diff --git a/src/Api/Abstracts/AbstractAllApiRequester.php b/src/Api/Abstracts/AbstractAllApiRequester.php index dc89fa9..5584238 100644 --- a/src/Api/Abstracts/AbstractAllApiRequester.php +++ b/src/Api/Abstracts/AbstractAllApiRequester.php @@ -6,7 +6,6 @@ use GuzzleHttp\Exception\ServerException; use Gitea\Client; use Gitea\Collections\ApiItemCollection; -use Gitea\Models\Repository; use Gitea\Api\Abstracts\AbstractApiRequester; use Gitea\Api\Interfaces\AllRequesterInterface; diff --git a/src/Client.php b/src/Client.php index 5c005d3..db50093 100644 --- a/src/Client.php +++ b/src/Client.php @@ -5,10 +5,6 @@ namespace Gitea; use GuzzleHttp\Client as GuzzleClient; use GuzzleHttp\Exception\ServerException; -use Gitea\Models\Repository; -use Gitea\Models\Tag; -use Gitea\Models\Branch; - use Gitea\Api\Organizations; use Gitea\Api\Repositories; use Gitea\Api\Branches;