diff --git a/src/Config/OpenApi/Tags.php b/src/Config/Tags.php similarity index 94% rename from src/Config/OpenApi/Tags.php rename to src/Config/Tags.php index 570c7e80a..e7035d822 100644 --- a/src/Config/OpenApi/Tags.php +++ b/src/Config/Tags.php @@ -13,7 +13,7 @@ * @license http://www.pimcore.org/license GPLv3 and PCL */ -namespace Pimcore\Bundle\StudioApiBundle\Config\OpenApi; +namespace Pimcore\Bundle\StudioApiBundle\Config; use OpenApi\Attributes\Tag; diff --git a/src/Controller/Api/Assets/CollectionController.php b/src/Controller/Api/Assets/CollectionController.php index fda8b96c0..9bdd6a7e2 100644 --- a/src/Controller/Api/Assets/CollectionController.php +++ b/src/Controller/Api/Assets/CollectionController.php @@ -28,7 +28,7 @@ use Pimcore\Bundle\StudioApiBundle\Attributes\Parameters\Query\PathParameter; use Pimcore\Bundle\StudioApiBundle\Attributes\Response\SuccessResponse; use Pimcore\Bundle\StudioApiBundle\Attributes\Response\UnauthorizedResponse; -use Pimcore\Bundle\StudioApiBundle\Config\OpenApi\Tags; +use Pimcore\Bundle\StudioApiBundle\Config\Tags; use Pimcore\Bundle\StudioApiBundle\Controller\Api\AbstractApiController; use Pimcore\Bundle\StudioApiBundle\Controller\Trait\PaginatedResponseTrait; use Pimcore\Bundle\StudioApiBundle\Dto\Asset; diff --git a/src/Controller/Api/Assets/GetController.php b/src/Controller/Api/Assets/GetController.php index 0b86a4ee6..1fffe87ef 100644 --- a/src/Controller/Api/Assets/GetController.php +++ b/src/Controller/Api/Assets/GetController.php @@ -21,7 +21,7 @@ use Pimcore\Bundle\StudioApiBundle\Attributes\Parameters\Path\IdParameter; use Pimcore\Bundle\StudioApiBundle\Attributes\Response\SuccessResponse; use Pimcore\Bundle\StudioApiBundle\Attributes\Response\UnauthorizedResponse; -use Pimcore\Bundle\StudioApiBundle\Config\OpenApi\Tags; +use Pimcore\Bundle\StudioApiBundle\Config\Tags; use Pimcore\Bundle\StudioApiBundle\Controller\Api\AbstractApiController; use Pimcore\Bundle\StudioApiBundle\Dto\Asset; use Pimcore\Bundle\StudioApiBundle\Service\AssetSearchServiceInterface; diff --git a/src/Controller/Api/Authorization/AuthorizationController.php b/src/Controller/Api/Authorization/AuthorizationController.php index 032bc530e..8f8452448 100644 --- a/src/Controller/Api/Authorization/AuthorizationController.php +++ b/src/Controller/Api/Authorization/AuthorizationController.php @@ -22,7 +22,7 @@ use Pimcore\Bundle\StudioApiBundle\Attributes\Request\TokenRequestBody; use Pimcore\Bundle\StudioApiBundle\Attributes\Response\SuccessResponse; use Pimcore\Bundle\StudioApiBundle\Attributes\Response\UnauthorizedResponse; -use Pimcore\Bundle\StudioApiBundle\Config\OpenApi\Tags; +use Pimcore\Bundle\StudioApiBundle\Config\Tags; use Pimcore\Bundle\StudioApiBundle\Controller\Api\AbstractApiController; use Pimcore\Bundle\StudioApiBundle\Dto\Credentials; use Pimcore\Bundle\StudioApiBundle\Dto\Token; diff --git a/src/Controller/Api/DataObjects/CollectionController.php b/src/Controller/Api/DataObjects/CollectionController.php index 358770a53..1b321ba39 100644 --- a/src/Controller/Api/DataObjects/CollectionController.php +++ b/src/Controller/Api/DataObjects/CollectionController.php @@ -28,7 +28,7 @@ use Pimcore\Bundle\StudioApiBundle\Attributes\Parameters\Query\PathParameter; use Pimcore\Bundle\StudioApiBundle\Attributes\Response\SuccessResponse; use Pimcore\Bundle\StudioApiBundle\Attributes\Response\UnauthorizedResponse; -use Pimcore\Bundle\StudioApiBundle\Config\OpenApi\Tags; +use Pimcore\Bundle\StudioApiBundle\Config\Tags; use Pimcore\Bundle\StudioApiBundle\Controller\Api\AbstractApiController; use Pimcore\Bundle\StudioApiBundle\Controller\Trait\PaginatedResponseTrait; use Pimcore\Bundle\StudioApiBundle\Dto\Collection; diff --git a/src/Controller/Api/TranslationController.php b/src/Controller/Api/TranslationController.php index 67ebf87e2..0601b20bb 100644 --- a/src/Controller/Api/TranslationController.php +++ b/src/Controller/Api/TranslationController.php @@ -21,7 +21,7 @@ use Pimcore\Bundle\StudioApiBundle\Attributes\Request\TranslationRequestBody; use Pimcore\Bundle\StudioApiBundle\Attributes\Response\SuccessResponse; use Pimcore\Bundle\StudioApiBundle\Attributes\Response\UnauthorizedResponse; -use Pimcore\Bundle\StudioApiBundle\Config\OpenApi\Tags; +use Pimcore\Bundle\StudioApiBundle\Config\Tags; use Pimcore\Bundle\StudioApiBundle\Dto\Translation; use Pimcore\Bundle\StudioApiBundle\Service\TranslatorServiceInterface; use Symfony\Component\HttpFoundation\JsonResponse;