From a5ee4fa9b2cba8b93c10d9d85a87f1eabaa0042c Mon Sep 17 00:00:00 2001 From: mattamon Date: Mon, 3 Jun 2024 16:09:16 +0200 Subject: [PATCH] Rename request to MappedParameter --- src/Property/Controller/CollectionController.php | 2 +- .../{Request => MappedParameter}/PropertiesParameters.php | 2 +- .../{Request => MappedParameter}/UpdateElementProperties.php | 2 +- src/Property/Repository/PropertyRepository.php | 2 +- src/Property/Repository/PropertyRepositoryInterface.php | 2 +- src/Property/Service/PropertyService.php | 4 ++-- src/Property/Service/PropertyServiceInterface.php | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) rename src/Property/{Request => MappedParameter}/PropertiesParameters.php (93%) rename src/Property/{Request => MappedParameter}/UpdateElementProperties.php (94%) diff --git a/src/Property/Controller/CollectionController.php b/src/Property/Controller/CollectionController.php index 99019d534..5b19398e3 100644 --- a/src/Property/Controller/CollectionController.php +++ b/src/Property/Controller/CollectionController.php @@ -24,7 +24,7 @@ use Pimcore\Bundle\StudioBackendBundle\OpenApi\Attributes\Response\DefaultResponses; use Pimcore\Bundle\StudioBackendBundle\OpenApi\Attributes\Response\SuccessResponse; use Pimcore\Bundle\StudioBackendBundle\OpenApi\Config\Tags; -use Pimcore\Bundle\StudioBackendBundle\Property\Request\PropertiesParameters; +use Pimcore\Bundle\StudioBackendBundle\Property\MappedParameter\PropertiesParameters; use Pimcore\Bundle\StudioBackendBundle\Property\Schema\PredefinedProperty; use Pimcore\Bundle\StudioBackendBundle\Property\Service\PropertyServiceInterface; use Pimcore\Bundle\StudioBackendBundle\Util\Constants\HttpResponseCodes; diff --git a/src/Property/Request/PropertiesParameters.php b/src/Property/MappedParameter/PropertiesParameters.php similarity index 93% rename from src/Property/Request/PropertiesParameters.php rename to src/Property/MappedParameter/PropertiesParameters.php index 4e42e8aa1..b4b942ec8 100644 --- a/src/Property/Request/PropertiesParameters.php +++ b/src/Property/MappedParameter/PropertiesParameters.php @@ -14,7 +14,7 @@ * @license http://www.pimcore.org/license GPLv3 and PCL */ -namespace Pimcore\Bundle\StudioBackendBundle\Property\Request; +namespace Pimcore\Bundle\StudioBackendBundle\Property\MappedParameter; use Pimcore\Bundle\StudioBackendBundle\Util\Constants\ElementTypes; diff --git a/src/Property/Request/UpdateElementProperties.php b/src/Property/MappedParameter/UpdateElementProperties.php similarity index 94% rename from src/Property/Request/UpdateElementProperties.php rename to src/Property/MappedParameter/UpdateElementProperties.php index bc92ffe7d..fe30bc655 100644 --- a/src/Property/Request/UpdateElementProperties.php +++ b/src/Property/MappedParameter/UpdateElementProperties.php @@ -14,7 +14,7 @@ * @license http://www.pimcore.org/license GPLv3 and PCL */ -namespace Pimcore\Bundle\StudioBackendBundle\Property\Request; +namespace Pimcore\Bundle\StudioBackendBundle\Property\MappedParameter; use Pimcore\Bundle\StudioBackendBundle\Property\Schema\UpdateElementProperty; diff --git a/src/Property/Repository/PropertyRepository.php b/src/Property/Repository/PropertyRepository.php index 227515ec0..a95097b83 100644 --- a/src/Property/Repository/PropertyRepository.php +++ b/src/Property/Repository/PropertyRepository.php @@ -19,7 +19,7 @@ use Pimcore\Bundle\StaticResolverBundle\Models\Predefined\PredefinedResolverInterface; use Pimcore\Bundle\StudioBackendBundle\Exception\NotWriteableException; use Pimcore\Bundle\StudioBackendBundle\Exception\PropertyNotFoundException; -use Pimcore\Bundle\StudioBackendBundle\Property\Request\PropertiesParameters; +use Pimcore\Bundle\StudioBackendBundle\Property\MappedParameter\PropertiesParameters; use Pimcore\Bundle\StudioBackendBundle\Property\Schema\UpdatePredefinedProperty; use Pimcore\Bundle\StudioBackendBundle\Util\Constants\ElementTypes; use Pimcore\Bundle\StudioBackendBundle\Util\Traits\ElementProviderTrait; diff --git a/src/Property/Repository/PropertyRepositoryInterface.php b/src/Property/Repository/PropertyRepositoryInterface.php index 1dc6cb325..c80768945 100644 --- a/src/Property/Repository/PropertyRepositoryInterface.php +++ b/src/Property/Repository/PropertyRepositoryInterface.php @@ -18,7 +18,7 @@ use Pimcore\Bundle\StudioBackendBundle\Exception\NotWriteableException; use Pimcore\Bundle\StudioBackendBundle\Exception\PropertyNotFoundException; -use Pimcore\Bundle\StudioBackendBundle\Property\Request\PropertiesParameters; +use Pimcore\Bundle\StudioBackendBundle\Property\MappedParameter\PropertiesParameters; use Pimcore\Bundle\StudioBackendBundle\Property\Schema\UpdatePredefinedProperty; use Pimcore\Model\Element\ElementInterface; use Pimcore\Model\Property\Predefined; diff --git a/src/Property/Service/PropertyService.php b/src/Property/Service/PropertyService.php index c6d2eae3f..3bbc0956a 100644 --- a/src/Property/Service/PropertyService.php +++ b/src/Property/Service/PropertyService.php @@ -23,8 +23,8 @@ use Pimcore\Bundle\StudioBackendBundle\Property\Event\PredefinedPropertyEvent; use Pimcore\Bundle\StudioBackendBundle\Property\Hydrator\PropertyHydratorInterface; use Pimcore\Bundle\StudioBackendBundle\Property\Repository\PropertyRepositoryInterface; -use Pimcore\Bundle\StudioBackendBundle\Property\Request\PropertiesParameters; -use Pimcore\Bundle\StudioBackendBundle\Property\Request\UpdateElementProperties; +use Pimcore\Bundle\StudioBackendBundle\Property\MappedParameter\PropertiesParameters; +use Pimcore\Bundle\StudioBackendBundle\Property\MappedParameter\UpdateElementProperties; use Pimcore\Bundle\StudioBackendBundle\Property\Schema\ElementProperty; use Pimcore\Bundle\StudioBackendBundle\Property\Schema\PredefinedProperty; use Pimcore\Bundle\StudioBackendBundle\Property\Schema\UpdatePredefinedProperty; diff --git a/src/Property/Service/PropertyServiceInterface.php b/src/Property/Service/PropertyServiceInterface.php index a3aafad29..a2345fc93 100644 --- a/src/Property/Service/PropertyServiceInterface.php +++ b/src/Property/Service/PropertyServiceInterface.php @@ -19,7 +19,7 @@ use Pimcore\Bundle\StudioBackendBundle\Exception\ElementNotFoundException; use Pimcore\Bundle\StudioBackendBundle\Exception\NotWriteableException; use Pimcore\Bundle\StudioBackendBundle\Exception\PropertyNotFoundException; -use Pimcore\Bundle\StudioBackendBundle\Property\Request\PropertiesParameters; +use Pimcore\Bundle\StudioBackendBundle\Property\MappedParameter\PropertiesParameters; use Pimcore\Bundle\StudioBackendBundle\Property\Schema\ElementProperty; use Pimcore\Bundle\StudioBackendBundle\Property\Schema\PredefinedProperty; use Pimcore\Bundle\StudioBackendBundle\Property\Schema\UpdatePredefinedProperty;