Corrected namespaces + Chnaged tab size to 4

+ Went through all the Model classes and updated their namespaces to match their parent folder name
+ Changed tab sizes to 4 spaces instead of 2 (in all php files)
This commit is contained in:
Benjamin Blake
2020-02-20 13:21:18 -07:00
parent b17224ce39
commit dcd2d8bdf3
15 changed files with 1679 additions and 1712 deletions

View File

@ -5,7 +5,7 @@ namespace Gitea\Api;
use GuzzleHttp\Psr7\Response;
use Gitea\Client;
use Gitea\Models\Organization;
use Gitea\Model\Organization;
use Gitea\Api\Abstracts\AbstractApi;

View File

@ -6,7 +6,7 @@ use GuzzleHttp\Exception\ServerException;
use Gitea\Client;
use Gitea\Collections\ApiItemCollection;
use Gitea\Models\Repository;
use Gitea\Model\Repository;
use Gitea\Api\Abstracts\AbstractAllApi;