From 9c68bca786707103683daa948a6410444ce09d59 Mon Sep 17 00:00:00 2001
From: Dominik Pfaffenbauer
Date: Thu, 17 Oct 2024 08:11:21 +0200
Subject: [PATCH 1/8] [License] change license to Dual-License with GPL and
Data Definitions Commercial License (DDCL)
---
.github/workflows/codestyles.yml | 48 ++++
LICENSE.md | 21 +-
composer.json | 5 +-
ecs.php | 268 ++++++++++++++++++
src/BehatKernel.php | 19 +-
.../Cleaner/AbstractCleaner.php | 32 +--
.../Cleaner/CleanerInterface.php | 24 +-
src/DataDefinitionsBundle/Cleaner/Deleter.php | 23 +-
src/DataDefinitionsBundle/Cleaner/None.php | 24 +-
.../Cleaner/ReferenceCleaner.php | 27 +-
.../Cleaner/Unpublisher.php | 23 +-
.../AbstractImportDefinitionCommand.php | 39 ++-
.../ConvertExportDefinitionsToYaml.php | 29 +-
.../ConvertImportDefinitionsToYaml.php | 29 +-
.../Command/ExportCommand.php | 48 ++--
.../Command/ImportAsyncCommand.php | 42 ++-
.../Command/ImportCommand.php | 56 ++--
.../Command/ImportExportDefinitionCommand.php | 23 +-
.../Command/ImportImportDefinitionCommand.php | 23 +-
.../Command/ListExportDefinitionsCommand.php | 36 +--
.../Command/ListImportDefinitionsCommand.php | 36 +--
src/DataDefinitionsBundle/Context/Context.php | 23 +-
.../Context/ContextFactory.php | 25 +-
.../Context/ContextFactoryInterface.php | 25 +-
.../Context/ContextInterface.php | 23 +-
.../Context/FetcherContext.php | 23 +-
.../Context/FetcherContextInterface.php | 23 +-
.../Context/FilterContext.php | 27 +-
.../Context/FilterContextInterface.php | 26 +-
.../Context/GetterContext.php | 27 +-
.../Context/GetterContextInterface.php | 26 +-
.../Context/InterpreterContext.php | 28 +-
.../Context/InterpreterContextInterface.php | 25 +-
.../Context/LoaderContext.php | 25 +-
.../Context/LoaderContextInterface.php | 23 +-
.../Context/RunnerContext.php | 27 +-
.../Context/RunnerContextInterface.php | 26 +-
.../Context/SetterContext.php | 25 +-
.../Context/SetterContextInterface.php | 26 +-
.../AbstractDefinitionController.php | 29 +-
.../Controller/ExportDefinitionController.php | 85 +++---
.../Controller/ImportDefinitionController.php | 55 ++--
.../Controller/ImportRuleController.php | 51 ++--
.../DataDefinitionsBundle.php | 32 +--
.../Compiler/CleanerRegistryCompilerPass.php | 29 +-
.../ExportProviderRegistryCompilerPass.php | 29 +-
.../ExportRunnerRegistryCompilerPass.php | 29 +-
.../Compiler/FetcherRegistryCompilerPass.php | 29 +-
.../Compiler/FilterRegistryCompilerPass.php | 29 +-
.../Compiler/GetterRegistryCompilerPass.php | 29 +-
.../Compiler/ImportRuleActionPass.php | 29 +-
.../Compiler/ImportRuleConditionPass.php | 29 +-
.../InterpreterRegistryCompilerPass.php | 29 +-
.../Compiler/LoaderRegistryCompilerPass.php | 29 +-
.../PersisterRegistryCompilerPass.php | 20 +-
.../Compiler/ProviderRegistryCompilerPass.php | 29 +-
.../Compiler/RunnerRegistryCompilerPass.php | 29 +-
.../Compiler/SetterRegistryCompilerPass.php | 29 +-
.../DependencyInjection/Configuration.php | 42 +--
.../DataDefinitionsExtension.php | 72 +++--
.../Event/DefinitionEventInterface.php | 23 +-
.../Event/EventDispatcher.php | 31 +-
.../Event/EventDispatcherInterface.php | 24 +-
.../Event/ExportDefinitionEvent.php | 34 ++-
.../Event/ImportDefinitionEvent.php | 34 ++-
.../EventListener/ObjectDeleteListener.php | 25 +-
.../EventListener/PimcoreSettingsListener.php | 25 +-
.../EventListener/WriteableListener.php | 27 +-
.../Exception/DoNotSetException.php | 23 +-
.../Exception/InterpreterException.php | 39 ++-
.../Exception/SpoutException.php | 23 +-
.../Exception/UnexpectedValueException.php | 23 +-
.../Exporter/Exporter.php | 98 ++++---
.../Exporter/ExporterInterface.php | 23 +-
.../Fetcher/FetcherInterface.php | 26 +-
.../Fetcher/ObjectsFetcher.php | 47 ++-
.../Filter/FilterInterface.php | 23 +-
.../DefinitionMappingDataMapper.php | 25 +-
.../Form/Type/ClassChoiceType.php | 23 +-
.../Form/Type/CleanerChoiceType.php | 28 +-
.../Form/Type/DefinitionChoiceType.php | 33 ++-
.../Form/Type/ExportDefinitionType.php | 47 ++-
.../Form/Type/ExportMappingCollectionType.php | 25 +-
.../Form/Type/ExportMappingType.php | 47 ++-
.../Type/ExportProvider/CsvProviderType.php | 26 +-
.../Type/ExportProvider/XmlProviderType.php | 26 +-
.../Form/Type/ExportProviderChoiceType.php | 28 +-
.../Form/Type/ExportRunnerChoiceType.php | 28 +-
.../Form/Type/Fetcher/ObjectsFetcherType.php | 26 +-
.../Form/Type/FetcherChoiceType.php | 28 +-
.../Form/Type/FilterChoiceType.php | 26 +-
.../Form/Type/ImportDefinitionType.php | 37 ++-
.../Form/Type/ImportMappingCollectionType.php | 28 +-
.../Form/Type/ImportMappingType.php | 49 ++--
.../Type/ImportProvider/CsvProviderType.php | 26 +-
.../Type/ImportProvider/ExcelProviderType.php | 26 +-
.../ExternalSqlProviderType.php | 26 +-
.../Type/ImportProvider/JsonProviderType.php | 26 +-
.../Type/ImportProvider/RawProviderType.php | 26 +-
.../Type/ImportProvider/SqlProviderType.php | 26 +-
.../Type/ImportProvider/XmlProviderType.php | 26 +-
.../Form/Type/ImportProviderChoiceType.php | 28 +-
.../Form/Type/ImportRulesImportType.php | 27 +-
.../AssetByPathInterpreterType.php | 26 +-
.../Interpreter/AssetUrlInterpreterType.php | 26 +-
.../Interpreter/AssetsUrlInterpreterType.php | 28 +-
.../Interpreter/CarbonInterpreterType.php | 25 +-
.../ConditionalInterpreterType.php | 26 +-
.../CoreShop/MoneyInterpreterType.php | 22 +-
.../CoreShop/PriceInterpreterType.php | 26 +-
.../CoreShop/StoresInterpreterType.php | 32 +--
.../DefaultValueInterpreterType.php | 26 +-
.../Form/Type/Interpreter/DefinitionType.php | 28 +-
.../Interpreter/ExpressionInterpreterType.php | 26 +-
.../Type/Interpreter/HrefInterpreterType.php | 26 +-
.../Interpreter/InterpreterCollectionType.php | 32 +--
.../Form/Type/Interpreter/InterpreterType.php | 48 ++--
.../Interpreter/IteratorInterpreterType.php | 26 +-
.../Interpreter/MappingInterpreterType.php | 26 +-
.../Form/Type/Interpreter/MappingType.php | 26 +-
.../Interpreter/MetadataInterpreterType.php | 26 +-
.../Interpreter/MultiHrefInterpreterType.php | 26 +-
.../Interpreter/NestedInterpreterType.php | 26 +-
.../Type/Interpreter/ObjectResolverType.php | 28 +-
.../QuantityValueInterpreterType.php | 26 +-
.../SpecificObjectInterpreterType.php | 26 +-
.../Type/Interpreter/TwigInterpreterType.php | 26 +-
.../TypeCastingInterpreterType.php | 28 +-
.../Form/Type/InterpreterChoiceType.php | 28 +-
.../Form/Type/LoaderChoiceType.php | 28 +-
.../Form/Type/NoConfigurationType.php | 23 +-
.../Form/Type/PersisterChoiceType.php | 19 +-
.../ExportDefinitionObjectStartupForm.php | 26 +-
.../ProcessManager/ImportDefinitionsType.php | 26 +-
.../Form/Type/RunnerChoiceType.php | 28 +-
.../Setter/ClassificationStoreSetterType.php | 28 +-
.../Setter/CoreShop/StorePriceSetterType.php | 32 +--
.../Setter/CoreShop/StoreValuesSetterType.php | 32 +--
.../Type/Setter/FieldCollectionSetterType.php | 28 +-
.../Type/Setter/LocalizedFieldSetterType.php | 26 +-
.../Type/Setter/ObjectBrickSetterType.php | 26 +-
.../Form/Type/SetterChoiceType.php | 28 +-
.../Getter/DynamicColumnGetterInterface.php | 23 +-
.../Getter/GetterInterface.php | 23 +-
.../Importer/AsyncImporterInterface.php | 23 +-
.../Importer/Importer.php | 117 ++++----
.../Importer/ImporterInterface.php | 23 +-
src/DataDefinitionsBundle/Installer.php | 23 +-
.../Interpreter/AssetByPathInterpreter.php | 27 +-
.../Interpreter/AssetUrlInterpreter.php | 50 ++--
.../Interpreter/AssetsUrlInterpreter.php | 27 +-
.../Interpreter/CarbonInterpreter.php | 23 +-
.../Interpreter/CheckboxInterpreter.php | 29 +-
.../Interpreter/ConditionalInterpreter.php | 31 +-
.../CoreShop/CurrencyInterpreter.php | 30 +-
.../Interpreter/CoreShop/MoneyInterpreter.php | 44 +--
.../Interpreter/CoreShop/PriceInterpreter.php | 31 +-
.../CoreShop/StoresInterpreter.php | 25 +-
.../Interpreter/DefaultValueInterpreter.php | 23 +-
.../Interpreter/DefinitionInterpreter.php | 32 +--
.../DoNotSetOnEmptyInterpreter.php | 25 +-
.../Interpreter/ExpressionInterpreter.php | 39 +--
.../Interpreter/ExternalImageInterpreter.php | 33 ++-
.../Interpreter/HrefInterpreter.php | 29 +-
.../Interpreter/ImportRuleInterpreter.php | 30 +-
.../Interpreter/InterpreterInterface.php | 23 +-
.../Interpreter/IteratorInterpreter.php | 29 +-
.../Interpreter/LinkInterpreter.php | 29 +-
.../Interpreter/MappingInterpreter.php | 23 +-
.../Interpreter/MetadataInterpreter.php | 31 +-
.../Interpreter/MultiHrefInterpreter.php | 27 +-
.../Interpreter/NestedInterpreter.php | 29 +-
.../Interpreter/ObjectResolverInterpreter.php | 29 +-
.../Interpreter/QuantityValueInterpreter.php | 25 +-
.../Interpreter/SpecificObjectInterpreter.php | 25 +-
.../Interpreter/TwigInterpreter.php | 30 +-
.../Interpreter/TypeCastingInterpreter.php | 36 +--
.../Loader/LoaderInterface.php | 25 +-
.../Loader/PrimaryKeyLoader.php | 35 ++-
.../Messenger/ImportRowMessage.php | 32 ++-
.../Messenger/ImportRowMessageHandler.php | 26 +-
.../Model/AbstractColumn.php | 29 +-
.../Model/AbstractDataDefinition.php | 25 +-
.../Model/AbstractMapping.php | 32 +--
.../Model/DataDefinitionInterface.php | 29 +-
.../Model/DataSetAwareTrait.php | 23 +-
.../Model/ExportDefinition.php | 37 +--
.../Model/ExportDefinition/Dao.php | 43 +--
.../Model/ExportDefinition/Listing.php | 28 +-
.../Model/ExportDefinition/Listing/Dao.php | 27 +-
.../Model/ExportDefinitionInterface.php | 35 +--
.../Model/ExportMapping.php | 25 +-
.../Model/ExportMapping/FromColumn.php | 52 ++--
.../Model/ExportMapping/ToColumn.php | 24 +-
.../Model/IdGenerator.php | 21 +-
.../Model/ImportDefinition.php | 33 ++-
.../Model/ImportDefinition/Dao.php | 42 +--
.../Model/ImportDefinition/Listing.php | 29 +-
.../Model/ImportDefinition/Listing/Dao.php | 30 +-
.../Model/ImportDefinitionInterface.php | 29 +-
.../Model/ImportMapping.php | 29 +-
.../Model/ImportMapping/FromColumn.php | 23 +-
.../Model/ImportMapping/ToColumn.php | 52 ++--
src/DataDefinitionsBundle/Model/Log.php | 29 +-
src/DataDefinitionsBundle/Model/Log/Dao.php | 36 +--
.../Model/Log/Listing.php | 37 +--
.../Model/Log/Listing/Dao.php | 48 ++--
.../Model/MappingInterface.php | 29 +-
.../Model/ParamsAwareInterface.php | 23 +-
.../Model/ParamsAwareTrait.php | 23 +-
.../Persister/Persister.php | 16 +-
.../Persister/PersisterInterface.php | 16 +-
.../AbstractProcessManagerListener.php | 69 ++---
.../ArtifactGenerationProviderInterface.php | 28 +-
.../ProcessManager/ArtifactProviderTrait.php | 32 +--
.../DataDefinitionProcessTrait.php | 23 +-
.../ExportDefinitionProcess.php | 23 +-
.../ExportDefinitionStartupFormResolver.php | 33 +--
.../ImportDefinitionProcess.php | 24 +-
.../ImportDefinitionsReport.php | 115 ++++----
.../ProcessManagerExportListener.php | 34 +--
.../ProcessManagerImportListener.php | 28 +-
.../Provider/AbstractFileProvider.php | 32 +--
.../Provider/AbstractSqlProvider.php | 29 +-
.../Provider/ArrayImportDataSet.php | 61 ++--
.../Provider/CsvProvider.php | 43 ++-
.../Provider/ExcelProvider.php | 45 ++-
.../Provider/ExportProviderInterface.php | 25 +-
.../Provider/ExternalSqlProvider.php | 23 +-
.../Provider/ImportDataSet.php | 66 +++--
.../Provider/ImportDataSetInterface.php | 23 +-
.../Provider/ImportProviderInterface.php | 25 +-
.../Provider/JsonProvider.php | 34 ++-
.../Provider/RawProvider.php | 27 +-
.../Provider/SqlProvider.php | 28 +-
.../Provider/TraversableImportDataSet.php | 57 ++--
.../Provider/XmlProvider.php | 63 ++--
.../Repository/DefinitionRepository.php | 23 +-
.../pimcore/js/coreshop/getter/storePrice.js | 18 +-
.../pimcore/js/coreshop/getter/storeValues.js | 18 +-
.../pimcore/js/coreshop/interpreter/money.js | 11 +
.../pimcore/js/coreshop/interpreter/price.js | 18 +-
.../pimcore/js/coreshop/interpreter/stores.js | 18 +-
.../pimcore/js/coreshop/setter/storePrice.js | 18 +-
.../pimcore/js/coreshop/setter/storeValues.js | 18 +-
.../pimcore/js/definition/abstractItem.js | 18 +-
.../public/pimcore/js/export/configDialog.js | 18 +-
.../public/pimcore/js/export/fields.js | 18 +-
.../public/pimcore/js/export/item.js | 18 +-
.../public/pimcore/js/export/panel.js | 18 +-
.../js/export_provider/abstractprovider.js | 18 +-
.../public/pimcore/js/export_provider/csv.js | 18 +-
.../public/pimcore/js/export_provider/xml.js | 18 +-
.../public/pimcore/js/fetchers/abstract.js | 18 +-
.../public/pimcore/js/fetchers/objects.js | 18 +-
.../pimcore/js/getters/classificationstore.js | 18 +-
.../pimcore/js/getters/fieldcollection.js | 18 +-
.../pimcore/js/getters/localizedfield.js | 18 +-
.../public/pimcore/js/getters/objectbrick.js | 18 +-
.../public/pimcore/js/import/configDialog.js | 18 +-
.../public/pimcore/js/import/item.js | 18 +-
.../public/pimcore/js/import/panel.js | 18 +-
.../public/pimcore/js/import_rule/action.js | 18 +-
.../js/import_rule/actions/expression.js | 15 +-
.../pimcore/js/import_rule/actions/object.js | 15 +-
.../pimcore/js/import_rule/condition.js | 18 +-
.../js/import_rule/conditions/expression.js | 15 +-
.../public/pimcore/js/import_rule/item.js | 18 +-
.../public/pimcore/js/import_rule/panel.js | 15 +-
.../pimcore/js/interpreters/abstract.js | 18 +-
.../pimcore/js/interpreters/assetbypath.js | 18 +-
.../pimcore/js/interpreters/assetsurl.js | 18 +-
.../pimcore/js/interpreters/asseturl.js | 18 +-
.../public/pimcore/js/interpreters/carbon.js | 18 +-
.../pimcore/js/interpreters/conditional.js | 18 +-
.../pimcore/js/interpreters/defaultvalue.js | 18 +-
.../pimcore/js/interpreters/definition.js | 18 +-
.../public/pimcore/js/interpreters/empty.js | 18 +-
.../pimcore/js/interpreters/expression.js | 18 +-
.../public/pimcore/js/interpreters/href.js | 18 +-
.../pimcore/js/interpreters/import_rule.js | 18 +-
.../pimcore/js/interpreters/iterator.js | 18 +-
.../public/pimcore/js/interpreters/mapping.js | 18 +-
.../pimcore/js/interpreters/metadata.js | 18 +-
.../pimcore/js/interpreters/multihref.js | 18 +-
.../public/pimcore/js/interpreters/nested.js | 18 +-
.../js/interpreters/nestedcontainer.js | 18 +-
.../pimcore/js/interpreters/objectresolver.js | 18 +-
.../pimcore/js/interpreters/quantityvalue.js | 18 +-
.../pimcore/js/interpreters/specificobject.js | 18 +-
.../public/pimcore/js/interpreters/twig.js | 18 +-
.../pimcore/js/interpreters/typecasting.js | 18 +-
.../js/process_manager/export_contextmenu.js | 11 +
.../js/process_manager/export_definitions.js | 18 +-
.../js/process_manager/export_search.js | 18 +-
.../js/process_manager/import_definitions.js | 18 +-
.../pimcore/js/provider/abstractprovider.js | 18 +-
.../public/pimcore/js/provider/csv.js | 18 +-
.../public/pimcore/js/provider/excel.js | 18 +-
.../public/pimcore/js/provider/externalSql.js | 18 +-
.../public/pimcore/js/provider/json.js | 18 +-
.../public/pimcore/js/provider/raw.js | 18 +-
.../public/pimcore/js/provider/sql.js | 18 +-
.../public/pimcore/js/provider/xml.js | 18 +-
.../public/pimcore/js/resource/definition.js | 11 +
.../public/pimcore/js/setters/abstract.js | 18 +-
.../pimcore/js/setters/classificationstore.js | 18 +-
.../pimcore/js/setters/fieldcollection.js | 18 +-
.../pimcore/js/setters/localizedfield.js | 18 +-
.../public/pimcore/js/setters/objectbrick.js | 18 +-
.../Resources/public/pimcore/js/startup.js | 18 +-
.../Rules/Action/ExpressionProcessor.php | 36 +--
.../Action/ImportRuleProcessorInterface.php | 27 +-
.../Rules/Action/ObjectProcessor.php | 27 +-
.../Condition/AbstractConditionChecker.php | 29 +-
.../Condition/ExpressionConditionChecker.php | 36 +--
.../ImportRuleConditionCheckerInterface.php | 27 +-
.../Rules/Form/Type/Action/ExpressionType.php | 26 +-
.../Rules/Form/Type/Action/ObjectType.php | 26 +-
.../Condition/ExpressionConditionType.php | 26 +-
.../Form/Type/ImportRuleActionChoiceType.php | 24 +-
.../Type/ImportRuleActionCollectionType.php | 23 +-
.../Rules/Form/Type/ImportRuleActionType.php | 32 ++-
.../Type/ImportRuleConditionChoiceType.php | 24 +-
.../ImportRuleConditionCollectionType.php | 23 +-
.../Form/Type/ImportRuleConditionType.php | 32 ++-
.../Rules/Form/Type/ImportRuleType.php | 31 +-
.../Form/Type/ImportRulesInterpreterType.php | 26 +-
.../Rules/Model/ImportRule.php | 23 +-
.../Rules/Model/ImportRuleInterface.php | 23 +-
.../ImportRuleValidationProcessor.php | 34 +--
...ImportRuleValidationProcessorInterface.php | 27 +-
.../Rules/Processor/RuleApplier.php | 30 +-
.../Rules/Processor/RuleApplierInterface.php | 25 +-
.../Runner/ExportRunnerInterface.php | 23 +-
.../ImportStartFinishRunnerInterface.php | 23 +-
.../Runner/RunnerInterface.php | 23 +-
.../Runner/SaveRunnerInterface.php | 23 +-
.../Runner/SetterRunnerInterface.php | 27 +-
.../Service/FieldSelection.php | 51 ++--
.../Service/StorageLocator.php | 28 +-
.../Setter/ClassificationStoreFieldGetter.php | 31 +-
.../Setter/ClassificationStoreSetter.php | 33 ++-
.../Setter/CoreShop/StorePriceSetter.php | 30 +-
.../Setter/CoreShop/StoreValuesSetter.php | 30 +-
.../Setter/FieldCollectionSetter.php | 39 ++-
.../Setter/KeySetter.php | 27 +-
.../Setter/LocalizedfieldSetter.php | 23 +-
.../Setter/ObjectTypeSetter.php | 27 +-
.../Setter/ObjectbrickSetter.php | 31 +-
.../Setter/RelationSetter.php | 27 +-
.../Setter/SetterInterface.php | 23 +-
src/Kernel.php | 19 +-
353 files changed, 5107 insertions(+), 5001 deletions(-)
create mode 100644 .github/workflows/codestyles.yml
create mode 100644 ecs.php
diff --git a/.github/workflows/codestyles.yml b/.github/workflows/codestyles.yml
new file mode 100644
index 00000000..efd2c942
--- /dev/null
+++ b/.github/workflows/codestyles.yml
@@ -0,0 +1,48 @@
+name: Coding standard refactor
+
+on:
+ schedule:
+ - cron: "0 2 * * MON" # Run at 2am every Monday
+ workflow_dispatch: ~
+
+jobs:
+ coding-standard:
+ runs-on: ubuntu-latest
+ name: "Coding standard refactor"
+
+ timeout-minutes: 5
+
+ strategy:
+ fail-fast: false
+ matrix:
+ branch: [ '4.0' ]
+
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ ref: ${{ matrix.branch }}
+
+ - name: Setup PHP
+ uses: shivammathur/setup-php@v2
+ with:
+ php-version: 8.1
+
+ - name: Install PHP dependencies
+ run: composer update --no-interaction --no-scripts
+
+ - name: Run ECS
+ run: vendor/bin/ecs check --fix src
+
+ - name: Create Pull Request
+ uses: peter-evans/create-pull-request@v4
+ with:
+ commit-message: '[CS] Refactor'
+ author: CORS GmbH
+ title: '[CS] Refactor'
+ body: |
+ This PR has been generated automatically to fix code-styles
+ labels: |
+ Enhancement
+ branch: coding-standard/refactor-${{ matrix.branch }}
+ delete-branch: true
+ base: ${{ matrix.branch }}
\ No newline at end of file
diff --git a/LICENSE.md b/LICENSE.md
index ebfc7e20..14287133 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -1,5 +1,14 @@
# License
-Copyright (C) 2016-2024 instride AG
+Copyright (C) CORS GmbH in combination with instride AG
+
+This software is available under two different licenses:
+* GNU General Public License version 3 (GPLv3) as Pimcore Community Edition
+* Data Definitions Commercial License (DDCL)
+
+The default Data Definitions license, without a valid Data Definitions Commercial License agreement, is the Open-Source GPLv3 license.
+
+## GNU General Public License version 3 (GPLv3)
+If you decide to choose the GPLv3 license, you must comply with the following terms:
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -13,3 +22,13 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
+
+## Data Definitions Commercial License (DDCL)
+Alternatively, commercial and supported versions of the program - also known as
+Commercial Distributions - must be used in accordance with the terms and conditions
+contained in a separate written agreement between you and CoreShop GmbH.
+For more information about the Data Definitions Commercial License (DDCL) please contact office@cors.gmbh.
+
+
+Please see also (files in this directory):
+[GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 - gpl-3.0.txt](gpl-3.0.txt)
\ No newline at end of file
diff --git a/composer.json b/composer.json
index 83213df5..ea195ee8 100755
--- a/composer.json
+++ b/composer.json
@@ -46,13 +46,14 @@
"symfony/http-client": "^6.3 | ^7.0"
},
"require-dev": {
- "roave/security-advisories": "dev-latest",
"behat/behat": "^3.8",
"friends-of-behat/symfony-extension": "^2.1",
"phpstan/phpstan": "^1.5",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-symfony": "^1.1",
- "phpstan/phpstan-webmozart-assert": "^1.1"
+ "phpstan/phpstan-webmozart-assert": "^1.1",
+ "roave/security-advisories": "dev-latest",
+ "symplify/easy-coding-standard": "^11"
},
"conflict": {
"guzzlehttp/psr7": "< 2.0"
diff --git a/ecs.php b/ecs.php
new file mode 100644
index 00000000..3ca4f4a0
--- /dev/null
+++ b/ecs.php
@@ -0,0 +1,268 @@
+rules([
+ BinaryOperatorSpacesFixer::class,
+ BlankLineAfterNamespaceFixer::class,
+ BlankLineAfterOpeningTagFixer::class,
+ BlankLineBeforeStatementFixer::class,
+ CastSpacesFixer::class,
+ ClassAttributesSeparationFixer::class,
+ CombineConsecutiveIssetsFixer::class,
+ CombineConsecutiveUnsetsFixer::class,
+ DeclareEqualNormalizeFixer::class,
+ DeclareStrictTypesFixer::class,
+ DirConstantFixer::class,
+ ElseifFixer::class,
+ EncodingFixer::class,
+ EregToPregFixer::class,
+ ErrorSuppressionFixer::class,
+ FullOpeningTagFixer::class,
+ FunctionDeclarationFixer::class,
+ FunctionToConstantFixer::class,
+ FunctionTypehintSpaceFixer::class,
+ GeneralPhpdocTagRenameFixer::class,
+ IncludeFixer::class,
+ IndentationTypeFixer::class,
+ IsNullFixer::class,
+ LineEndingFixer::class,
+ LowercaseCastFixer::class,
+ LowercaseKeywordsFixer::class,
+ LowercaseStaticReferenceFixer::class,
+ MagicConstantCasingFixer::class,
+ MethodArgumentSpaceFixer::class,
+ ModernizeTypesCastingFixer::class,
+ NativeConstantInvocationFixer::class,
+ NativeFunctionCasingFixer::class,
+ NewWithBracesFixer::class,
+ NoAliasFunctionsFixer::class,
+ NoBlankLinesAfterClassOpeningFixer::class,
+ NoBlankLinesAfterPhpdocFixer::class,
+ NoBreakCommentFixer::class,
+ NoClosingTagFixer::class,
+ NoEmptyCommentFixer::class,
+ NoEmptyPhpdocFixer::class,
+ NoEmptyStatementFixer::class,
+ NoHomoglyphNamesFixer::class,
+ NoLeadingImportSlashFixer::class,
+ NoLeadingNamespaceWhitespaceFixer::class,
+ NoMultilineWhitespaceAroundDoubleArrowFixer::class,
+ NonPrintableCharacterFixer::class,
+ NoNullPropertyInitializationFixer::class,
+ NoPhp4ConstructorFixer::class,
+ NormalizeIndexBraceFixer::class,
+ NoShortBoolCastFixer::class,
+ NoSinglelineWhitespaceBeforeSemicolonsFixer::class,
+ NoSpacesAfterFunctionNameFixer::class,
+ NoSpacesAroundOffsetFixer::class,
+ NoSpacesInsideParenthesisFixer::class,
+ NoSuperfluousElseifFixer::class,
+ NoTrailingCommaInListCallFixer::class,
+ NoTrailingCommaInSinglelineArrayFixer::class,
+ NoTrailingWhitespaceFixer::class,
+ NoTrailingWhitespaceInCommentFixer::class,
+ NoUnneededControlParenthesesFixer::class,
+ NoUnneededCurlyBracesFixer::class,
+ NoUnneededFinalMethodFixer::class,
+ NoUnusedImportsFixer::class,
+ NoUselessElseFixer::class,
+ NoWhitespaceBeforeCommaInArrayFixer::class,
+ NoWhitespaceInBlankLineFixer::class,
+ ObjectOperatorWithoutWhitespaceFixer::class,
+ OrderedImportsFixer::class,
+ PhpdocIndentFixer::class,
+ PhpdocInlineTagNormalizerFixer::class,
+ PhpdocNoAccessFixer::class,
+ PhpdocNoAliasTagFixer::class,
+ PhpdocNoEmptyReturnFixer::class,
+ PhpdocNoPackageFixer::class,
+ PhpdocNoUselessInheritdocFixer::class,
+ PhpdocReturnSelfReferenceFixer::class,
+ PhpdocScalarFixer::class,
+ PhpdocSeparationFixer::class,
+ PhpdocSingleLineVarSpacingFixer::class,
+ PhpdocTagTypeFixer::class,
+ PhpdocTrimFixer::class,
+ PhpdocTypesFixer::class,
+ PhpdocVarWithoutNameFixer::class,
+ PhpUnitDedicateAssertFixer::class,
+ PhpUnitFqcnAnnotationFixer::class,
+ PowToExponentiationFixer::class,
+ ProtectedToPrivateFixer::class,
+ ReturnTypeDeclarationFixer::class,
+ SelfAccessorFixer::class,
+ ShortScalarCastFixer::class,
+ SingleBlankLineAtEofFixer::class,
+ SingleBlankLineBeforeNamespaceFixer::class,
+ SingleClassElementPerStatementFixer::class,
+ SingleImportPerStatementFixer::class,
+ SingleLineAfterImportsFixer::class,
+ SingleQuoteFixer::class,
+ SpaceAfterSemicolonFixer::class,
+ StandardizeNotEqualsFixer::class,
+ SwitchCaseSemicolonToColonFixer::class,
+ SwitchCaseSpaceFixer::class,
+ TernaryOperatorSpacesFixer::class,
+ TernaryToNullCoalescingFixer::class,
+ TrimArraySpacesFixer::class,
+ UnaryOperatorSpacesFixer::class,
+ WhitespaceAfterCommaInArrayFixer::class,
+ \Symplify\CodingStandard\Fixer\Spacing\StandaloneLineConstructorParamFixer::class
+ ]);
+
+ $ecsConfig->ruleWithConfiguration(ArraySyntaxFixer::class, ['syntax' => 'short']);
+ $ecsConfig->ruleWithConfiguration(BracesFixer::class, ['allow_single_line_closure' => true]);
+ $ecsConfig->ruleWithConfiguration(ClassDefinitionFixer::class, ['single_item_single_line' => true, 'multi_line_extends_each_single_line' => true]);
+ $ecsConfig->ruleWithConfiguration(ConcatSpaceFixer::class, ['spacing' => 'one']);
+ $ecsConfig->ruleWithConfiguration(ConstantCaseFixer::class, ['case' => 'lower']);
+ $ecsConfig->ruleWithConfiguration(IncrementStyleFixer::class, ['style' => 'pre']);
+ $ecsConfig->ruleWithConfiguration(ListSyntaxFixer::class, ['syntax' => 'short']);
+ $ecsConfig->ruleWithConfiguration(MultilineWhitespaceBeforeSemicolonsFixer::class, ['strategy' => 'new_line_for_chained_calls']);
+ $ecsConfig->ruleWithConfiguration(NoExtraBlankLinesFixer::class, ['tokens' => ['break', 'case', 'continue', 'curly_brace_block', 'default', 'extra', 'parenthesis_brace_block', 'return', 'square_brace_block', 'switch', 'throw', 'use']]);
+ $ecsConfig->ruleWithConfiguration(NoMixedEchoPrintFixer::class, ['use' => 'echo']);
+ $ecsConfig->ruleWithConfiguration(NoSuperfluousPhpdocTagsFixer::class, ['allow_mixed' => true]);
+ $ecsConfig->ruleWithConfiguration(OperatorLinebreakFixer::class, ['only_booleans' => true, 'position' => 'end']);
+ $ecsConfig->ruleWithConfiguration(PhpdocTypesOrderFixer::class, ['null_adjustment' => 'always_last', 'sort_algorithm' => 'none']);
+ $ecsConfig->ruleWithConfiguration(SingleLineCommentStyleFixer::class, ['comment_types' => ['hash']]);
+ $ecsConfig->ruleWithConfiguration(TrailingCommaInMultilineFixer::class, ['elements' => ['arrays', 'arguments', 'parameters']]);
+ $ecsConfig->ruleWithConfiguration(VisibilityRequiredFixer::class, ['elements' => ['const', 'property', 'method']]);
+
+ $header = <<ruleWithConfiguration(HeaderCommentFixer::class, ['header' => $header]);
+};
diff --git a/src/BehatKernel.php b/src/BehatKernel.php
index 4298642b..2e149d73 100644
--- a/src/BehatKernel.php
+++ b/src/BehatKernel.php
@@ -1,16 +1,19 @@
getO_Id() === $objectId) {
+ if ((int) $log->getO_Id() === $objectId) {
$found = true;
break;
@@ -71,10 +70,9 @@ protected function writeNewLogs(DataDefinitionInterface $definition, array $obje
{
foreach ($objectIds as $objId) {
$log = new Log();
- $log->setO_Id((int)$objId);
- $log->setDefinition((int)$definition->getId());
+ $log->setO_Id((int) $objId);
+ $log->setDefinition((int) $definition->getId());
$log->save();
}
}
}
-
diff --git a/src/DataDefinitionsBundle/Cleaner/CleanerInterface.php b/src/DataDefinitionsBundle/Cleaner/CleanerInterface.php
index 3ca6e6c7..5469cc36 100644
--- a/src/DataDefinitionsBundle/Cleaner/CleanerInterface.php
+++ b/src/DataDefinitionsBundle/Cleaner/CleanerInterface.php
@@ -1,19 +1,18 @@
metadata = $metadata;
$this->repository = $repository;
@@ -57,8 +59,9 @@ protected function configure(): void
->addArgument(
'path',
InputArgument::REQUIRED,
- sprintf('Path to %s Definition JSON export file', $type)
- );
+ sprintf('Path to %s Definition JSON export file', $type),
+ )
+ ;
}
protected function execute(InputInterface $input, OutputInterface $output)
@@ -96,9 +99,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
/**
* Validate and return path to JSON file
*
- * @return string
* @throws InvalidArgumentException
- *
*/
protected function getPath(): string
{
@@ -112,8 +113,6 @@ protected function getPath(): string
/**
* Get type
- *
- * @return string
*/
abstract protected function getType(): string;
}
diff --git a/src/DataDefinitionsBundle/Command/ConvertExportDefinitionsToYaml.php b/src/DataDefinitionsBundle/Command/ConvertExportDefinitionsToYaml.php
index 7c67a207..3a54575e 100644
--- a/src/DataDefinitionsBundle/Command/ConvertExportDefinitionsToYaml.php
+++ b/src/DataDefinitionsBundle/Command/ConvertExportDefinitionsToYaml.php
@@ -1,24 +1,40 @@
setName('data-definition:configuration:exporter:convert-to-yaml')
->setDescription('Convert export definitions file to YAML files')
->setHelp('This command converts export definitions file to YAML')
- ->addArgument('file', InputArgument::OPTIONAL, 'Path to the PHP file', 'var/config/exportdefinitions.php');
+ ->addArgument('file', InputArgument::OPTIONAL, 'Path to the PHP file', 'var/config/exportdefinitions.php')
+ ;
}
protected function execute(InputInterface $input, OutputInterface $output): int
@@ -32,15 +48,14 @@ protected function execute(InputInterface $input, OutputInterface $output): int
}
foreach ($data as $entry) {
-
$fileName = $entry['id'] . '.yaml';
$yamlData = [
'data_definitions' => [
'export_definitions' => [
- $entry['id'] => $entry
- ]
- ]
+ $entry['id'] => $entry,
+ ],
+ ],
];
$yaml = Yaml::dump($yamlData, 4, 2, Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK);
diff --git a/src/DataDefinitionsBundle/Command/ConvertImportDefinitionsToYaml.php b/src/DataDefinitionsBundle/Command/ConvertImportDefinitionsToYaml.php
index 16ea8d38..84a0ed8f 100644
--- a/src/DataDefinitionsBundle/Command/ConvertImportDefinitionsToYaml.php
+++ b/src/DataDefinitionsBundle/Command/ConvertImportDefinitionsToYaml.php
@@ -1,23 +1,39 @@
setName('data-definition:configuration:importer:convert-to-yaml')
->setDescription('Convert convert import file definitions to YAML files')
->setHelp('This command converts convert import file definitions file to YAML files')
- ->addArgument('file', InputArgument::OPTIONAL, 'Path to the PHP file', 'var/config/importdefinitions.php');
+ ->addArgument('file', InputArgument::OPTIONAL, 'Path to the PHP file', 'var/config/importdefinitions.php')
+ ;
}
protected function execute(InputInterface $input, OutputInterface $output): int
@@ -31,14 +47,13 @@ protected function execute(InputInterface $input, OutputInterface $output): int
}
foreach ($data as $entry) {
-
$fileName = $entry['id'] . '.yaml';
$yamlData = [
'data_definitions' => [
'import_definitions' => [
- $entry['id'] => $entry
- ]
- ]
+ $entry['id'] => $entry,
+ ],
+ ],
];
$yaml = Yaml::dump($yamlData, 4, 2, Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK);
diff --git a/src/DataDefinitionsBundle/Command/ExportCommand.php b/src/DataDefinitionsBundle/Command/ExportCommand.php
index 3566ec57..d7ed5af8 100644
--- a/src/DataDefinitionsBundle/Command/ExportCommand.php
+++ b/src/DataDefinitionsBundle/Command/ExportCommand.php
@@ -1,23 +1,25 @@
addOption(
'params',
'p',
InputOption::VALUE_REQUIRED,
- 'JSON Encoded Params'
- );
+ 'JSON Encoded Params',
+ )
+ ;
}
protected function execute(InputInterface $input, OutputInterface $output)
@@ -82,13 +83,12 @@ protected function execute(InputInterface $input, OutputInterface $output)
$definition = null;
try {
- if (filter_var($definitionId, FILTER_VALIDATE_INT)) {
+ if (filter_var($definitionId, \FILTER_VALIDATE_INT)) {
$definition = $this->repository->find($definitionId);
} else {
$definition = $this->repository->findByName($definitionId);
}
} catch (NotFoundException) {
-
}
if (!$definition instanceof ExportDefinitionInterface) {
@@ -113,7 +113,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
if ($total > 0) {
$progress = new ProgressBar($output, $total);
$progress->setFormat(
- ' %current%/%max% [%bar%] %percent:3s%% (%elapsed:6s%/%estimated:-6s%) %memory:6s%: %message%'
+ ' %current%/%max% [%bar%] %percent:3s%% (%elapsed:6s%/%estimated:-6s%) %memory:6s%: %message%',
);
$progress->start();
}
diff --git a/src/DataDefinitionsBundle/Command/ImportAsyncCommand.php b/src/DataDefinitionsBundle/Command/ImportAsyncCommand.php
index c7edb957..4f1b5a64 100644
--- a/src/DataDefinitionsBundle/Command/ImportAsyncCommand.php
+++ b/src/DataDefinitionsBundle/Command/ImportAsyncCommand.php
@@ -1,42 +1,37 @@
addOption(
'params',
'p',
InputOption::VALUE_REQUIRED,
- 'JSON Encoded Params'
- );
+ 'JSON Encoded Params',
+ )
+ ;
}
protected function execute(InputInterface $input, OutputInterface $output)
diff --git a/src/DataDefinitionsBundle/Command/ImportCommand.php b/src/DataDefinitionsBundle/Command/ImportCommand.php
index eaac27ef..cace9ab7 100644
--- a/src/DataDefinitionsBundle/Command/ImportCommand.php
+++ b/src/DataDefinitionsBundle/Command/ImportCommand.php
@@ -1,23 +1,25 @@
eventDispatcher = $eventDispatcher;
$this->repository = $repository;
@@ -63,21 +63,22 @@ protected function configure(): void
'definition',
'd',
InputOption::VALUE_REQUIRED,
- 'Import Definition ID or Name'
+ 'Import Definition ID or Name',
)
->addOption(
'params',
'p',
InputOption::VALUE_REQUIRED,
- 'JSON Encoded Params'
- );
+ 'JSON Encoded Params',
+ )
+ ;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$eventDispatcher = $this->eventDispatcher;
- $params = json_decode($input->getOption('params'), true, 512, JSON_THROW_ON_ERROR);
+ $params = json_decode($input->getOption('params'), true, 512, \JSON_THROW_ON_ERROR);
$definitionId = $input->getOption('definition');
if (!isset($params['userId'])) {
@@ -87,13 +88,12 @@ protected function execute(InputInterface $input, OutputInterface $output)
$definition = null;
try {
- if (filter_var($definitionId, FILTER_VALIDATE_INT)) {
+ if (filter_var($definitionId, \FILTER_VALIDATE_INT)) {
$definition = $this->repository->find($definitionId);
} else {
$definition = $this->repository->findByName($definitionId);
}
} catch (NotFoundException) {
-
}
if (!$definition instanceof ImportDefinitionInterface) {
@@ -115,8 +115,8 @@ protected function execute(InputInterface $input, OutputInterface $output)
$countProgress,
Helper::formatTime(time() - $startTime),
Helper::formatMemory(memory_get_usage(true)),
- $e->getSubject()
- )
+ $e->getSubject(),
+ ),
);
}
};
@@ -124,7 +124,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$imTotal = function (ImportDefinitionEvent $e) use ($output, &$progress) {
$progress = new ProgressBar($output, $e->getSubject());
$progress->setFormat(
- ' %current%/%max% [%bar%] %percent:3s%% (%elapsed:6s%/%estimated:-6s%) %memory:6s%: %message%'
+ ' %current%/%max% [%bar%] %percent:3s%% (%elapsed:6s%/%estimated:-6s%) %memory:6s%: %message%',
);
$progress->start();
};
@@ -134,7 +134,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$progress->advance();
}
- $countProgress++;
+ ++$countProgress;
};
$imFinished = function (ImportDefinitionEvent $e) use ($output, &$progress) {
diff --git a/src/DataDefinitionsBundle/Command/ImportExportDefinitionCommand.php b/src/DataDefinitionsBundle/Command/ImportExportDefinitionCommand.php
index 418fdee6..a8b36dbb 100644
--- a/src/DataDefinitionsBundle/Command/ImportExportDefinitionCommand.php
+++ b/src/DataDefinitionsBundle/Command/ImportExportDefinitionCommand.php
@@ -1,19 +1,18 @@
repository = $repository;
parent::__construct();
@@ -43,7 +43,8 @@ protected function configure(): void
<<%command.name% lists all Data Definitions for Exports.
EOT
- );
+ )
+ ;
}
protected function execute(InputInterface $input, OutputInterface $output)
@@ -64,7 +65,8 @@ protected function execute(InputInterface $input, OutputInterface $output)
$table = new Table($output);
$table
->setHeaders(['ID', 'Name', 'Provider'])
- ->setRows($data);
+ ->setRows($data)
+ ;
$table->render();
return 0;
diff --git a/src/DataDefinitionsBundle/Command/ListImportDefinitionsCommand.php b/src/DataDefinitionsBundle/Command/ListImportDefinitionsCommand.php
index 5b56178d..b032aa59 100644
--- a/src/DataDefinitionsBundle/Command/ListImportDefinitionsCommand.php
+++ b/src/DataDefinitionsBundle/Command/ListImportDefinitionsCommand.php
@@ -1,34 +1,34 @@
repository = $repository;
parent::__construct();
@@ -43,7 +43,8 @@ protected function configure(): void
<<%command.name% lists all Data Definitions for Imports.
EOT
- );
+ )
+ ;
}
protected function execute(InputInterface $input, OutputInterface $output)
@@ -64,7 +65,8 @@ protected function execute(InputInterface $input, OutputInterface $output)
$table = new Table($output);
$table
->setHeaders(['ID', 'Name', 'Provider'])
- ->setRows($data);
+ ->setRows($data)
+ ;
$table->render();
return 0;
diff --git a/src/DataDefinitionsBundle/Context/Context.php b/src/DataDefinitionsBundle/Context/Context.php
index be7dd0cf..c59b1ffd 100644
--- a/src/DataDefinitionsBundle/Context/Context.php
+++ b/src/DataDefinitionsBundle/Context/Context.php
@@ -1,19 +1,18 @@
object;
}
-
public function getValue(): mixed
{
return $this->value;
diff --git a/src/DataDefinitionsBundle/Context/InterpreterContextInterface.php b/src/DataDefinitionsBundle/Context/InterpreterContextInterface.php
index 13c11a6c..5285f321 100644
--- a/src/DataDefinitionsBundle/Context/InterpreterContextInterface.php
+++ b/src/DataDefinitionsBundle/Context/InterpreterContextInterface.php
@@ -1,24 +1,23 @@
array_keys($importRuleConditions),
'actions' => array_keys($importRuleActions),
],
- ]
+ ],
);
}
public function exportAction(Request $request): Response
{
- $id = (int)$request->get('id');
+ $id = (int) $request->get('id');
if ($id) {
$definition = $this->repository->find($id);
if ($definition instanceof ExportDefinitionInterface) {
-
$name = $definition->getName();
unset($definition->id, $definition->creationDate, $definition->modificationDate);
@@ -74,7 +71,7 @@ public function exportAction(Request $request): Response
$response->headers->set('Content-Type', 'application/json');
$response->headers->set(
'Content-Disposition',
- sprintf('attachment; filename="export-definition-%s.json"', $name)
+ sprintf('attachment; filename="export-definition-%s.json"', $name),
);
$response->headers->set('Pragma', 'no-cache');
$response->headers->set('Expires', '0');
@@ -91,7 +88,7 @@ public function exportAction(Request $request): Response
public function importAction(Request $request): JsonResponse
{
- $id = (int)$request->get('id');
+ $id = (int) $request->get('id');
$definition = $this->repository->find($id);
if ($id && $definition instanceof ExportDefinitionInterface && $request->files->has('Filedata')) {
@@ -99,8 +96,7 @@ public function importAction(Request $request): JsonResponse
if ($uploadedFile instanceof UploadedFile) {
$jsonContent = file_get_contents($uploadedFile->getPathname());
- $data = $this->decodeJson($jsonContent, false,[],false);
-
+ $data = $this->decodeJson($jsonContent, false, [], false);
$form = $this->resourceFormFactory->create($this->metadata, $definition);
$handledForm = $form->submit($data);
@@ -121,9 +117,9 @@ public function importAction(Request $request): JsonResponse
public function duplicateAction(Request $request): JsonResponse
{
- $id = (int)$request->get('id');
+ $id = (int) $request->get('id');
$definition = $this->repository->find($id);
- $name = (string)$request->get('name');
+ $name = (string) $request->get('name');
if ($definition instanceof ExportDefinitionInterface && $name) {
$newDefinition = clone $definition;
@@ -176,14 +172,14 @@ public function getColumnsAction(Request $request): JsonResponse
foreach ($localizedFields as $localizedField) {
$localizedField = $this->getFieldConfiguration($localizedField);
- $localizedField->setGroup('localizedfield.'.strtolower($language));
+ $localizedField->setGroup('localizedfield.' . strtolower($language));
$localizedField->setType('localizedfields');
$localizedField->setIdentifier(
sprintf(
'%s~%s',
$localizedField->getIdentifier(),
- $language
- )
+ $language,
+ ),
);
$localizedField->setGetter('localizedfield');
$localizedField->setConfig(['language' => $language]);
@@ -192,8 +188,8 @@ public function getColumnsAction(Request $request): JsonResponse
$result[] = $localizedField;
}
}
- break;
+ break;
case DataObject\ClassDefinition\Data\Objectbricks::class:
$list = new DataObject\Objectbrick\Definition\Listing();
$list = $list->load();
@@ -205,21 +201,21 @@ public function getColumnsAction(Request $request): JsonResponse
foreach ($classDefs as $classDef) {
if ($classDef['classname'] === $classDefinition->getName(
- ) && $classDef['fieldname'] === $field->getName()) {
+ ) && $classDef['fieldname'] === $field->getName()) {
$fields = $brickDefinition->getFieldDefinitions();
foreach ($fields as $brickField) {
$resultField = $this->getFieldConfiguration($brickField);
- $resultField->setGroup('objectbrick.'.$key);
+ $resultField->setGroup('objectbrick.' . $key);
$resultField->setType('objectbricks');
$resultField->setIdentifier(
sprintf(
'objectbrick~%s~%s~%s',
$field->getName(),
$key,
- $resultField->getIdentifier()
- )
+ $resultField->getIdentifier(),
+ ),
);
$resultField->setGetter('objectbrick');
$resultField->setConfig(['class' => $key]);
@@ -232,8 +228,8 @@ public function getColumnsAction(Request $request): JsonResponse
}
}
}
- break;
+ break;
case DataObject\ClassDefinition\Data\Fieldcollections::class:
foreach ($field->getAllowedTypes() as $type) {
$definition = DataObject\Fieldcollection\Definition::getByKey($type);
@@ -243,15 +239,15 @@ public function getColumnsAction(Request $request): JsonResponse
foreach ($fieldDefinition as $fieldcollectionField) {
$resultField = $this->getFieldConfiguration($fieldcollectionField);
- $resultField->setGroup('fieldcollection.'.$type);
+ $resultField->setGroup('fieldcollection.' . $type);
$resultField->setType('fieldcollections');
$resultField->setIdentifier(
sprintf(
'fieldcollection~%s~%s~%s',
$field->getName(),
$type,
- $resultField->getIdentifier()
- )
+ $resultField->getIdentifier(),
+ ),
);
$resultField->setGetter('fieldcollection');
$resultField->setConfig(['class' => $type]);
@@ -260,8 +256,8 @@ public function getColumnsAction(Request $request): JsonResponse
$result[] = $resultField;
}
}
- break;
+ break;
case DataObject\ClassDefinition\Data\Classificationstore::class:
$resultField = $this->getFieldConfiguration($field);
$resultField->setType('object');
@@ -274,8 +270,8 @@ public function getColumnsAction(Request $request): JsonResponse
if ($allowedGroupIds) {
$list->setCondition(
- 'ID in ('.implode(',', $allowedGroupIds).') AND storeId = ?',
- [$field->getStoreId()]
+ 'ID in (' . implode(',', $allowedGroupIds) . ') AND storeId = ?',
+ [$field->getStoreId()],
);
} else {
$list->setCondition('storeId = ?', [$field->getStoreId()]);
@@ -300,16 +296,16 @@ public function getColumnsAction(Request $request): JsonResponse
sprintf(
'classificationstore - %s (%s)',
$config->getName(),
- $config->getId()
- )
+ $config->getId(),
+ ),
);
$toColumn->setIdentifier(
sprintf(
'classificationstore~%s~%s~%s',
$field->getName(),
$keyConfig->getId(),
- $config->getId()
- )
+ $config->getId(),
+ ),
);
$toColumn->setType('classificationstore');
$toColumn->setFieldtype($keyConfig->getType());
@@ -326,13 +322,14 @@ public function getColumnsAction(Request $request): JsonResponse
}
}
}
- break;
+ break;
default:
$resultField = $this->getFieldConfiguration($field);
$resultField->setType('object');
$result[] = $resultField;
+
break;
}
}
diff --git a/src/DataDefinitionsBundle/Controller/ImportDefinitionController.php b/src/DataDefinitionsBundle/Controller/ImportDefinitionController.php
index 6e591cbe..e95bb37e 100644
--- a/src/DataDefinitionsBundle/Controller/ImportDefinitionController.php
+++ b/src/DataDefinitionsBundle/Controller/ImportDefinitionController.php
@@ -1,24 +1,28 @@
container->get('data_definitions.registry.provider')->get(
- $definition->getProvider()
+ $definition->getProvider(),
)->testData(
- $definition->getConfiguration()
+ $definition->getConfiguration(),
)) {
return $this->viewHandler->handle(['success' => true]);
}
@@ -101,7 +100,7 @@ public function getColumnsAction(Request $request): JsonResponse
try {
$fromColumns = $this->container->get('data_definitions.registry.provider')->get(
- $definition->getProvider()
+ $definition->getProvider(),
)->getColumns($definition->getConfiguration());
$fromColumns[] = $customFromColumn;
} catch (Exception $e) {
@@ -193,13 +192,12 @@ public function getColumnsAction(Request $request): JsonResponse
public function exportAction(Request $request): Response
{
- $id = (int)$request->get('id');
+ $id = (int) $request->get('id');
if ($id) {
$definition = $this->repository->find($id);
if ($definition instanceof ImportDefinitionInterface) {
-
$name = $definition->getName();
unset($definition->id, $definition->creationDate, $definition->modificationDate);
@@ -207,7 +205,7 @@ public function exportAction(Request $request): Response
$response->headers->set('Content-Type', 'application/json');
$response->headers->set(
'Content-Disposition',
- sprintf('attachment; filename="import-definition-%s.json"', $name)
+ sprintf('attachment; filename="import-definition-%s.json"', $name),
);
$response->headers->set('Pragma', 'no-cache');
$response->headers->set('Expires', '0');
@@ -224,7 +222,7 @@ public function exportAction(Request $request): Response
public function importAction(Request $request): JsonResponse
{
- $id = (int)$request->get('id');
+ $id = (int) $request->get('id');
$definition = $this->repository->find($id);
if ($id && $definition instanceof ImportDefinitionInterface && $request->files->has('Filedata')) {
@@ -232,7 +230,7 @@ public function importAction(Request $request): JsonResponse
if ($uploadedFile instanceof UploadedFile) {
$jsonContent = file_get_contents($uploadedFile->getPathname());
- $data = $this->decodeJson($jsonContent, false,[],false);
+ $data = $this->decodeJson($jsonContent, false, [], false);
$form = $this->resourceFormFactory->create($this->metadata, $definition);
$handledForm = $form->submit($data);
@@ -253,9 +251,9 @@ public function importAction(Request $request): JsonResponse
public function duplicateAction(Request $request): JsonResponse
{
- $id = (int)$request->get('id');
+ $id = (int) $request->get('id');
$definition = $this->repository->find($id);
- $name = (string)$request->get('name');
+ $name = (string) $request->get('name');
if ($definition instanceof ImportDefinitionInterface && $name) {
$newDefinition = clone $definition;
@@ -275,11 +273,10 @@ public static function getSubscribedServices(): array
{
return parent::getSubscribedServices() + [
FieldSelection::class,
- new SubscribedService('data_definitions.registry.provider', ServiceRegistryInterface::class, attributes: new Autowire(service: 'data_definitions.registry.provider'))
+ new SubscribedService('data_definitions.registry.provider', ServiceRegistryInterface::class, attributes: new Autowire(service: 'data_definitions.registry.provider')),
];
}
-
protected function getConfigProviders(): array
{
return $this->getParameter('data_definitions.import_providers');
diff --git a/src/DataDefinitionsBundle/Controller/ImportRuleController.php b/src/DataDefinitionsBundle/Controller/ImportRuleController.php
index b0b8819f..2faf819b 100644
--- a/src/DataDefinitionsBundle/Controller/ImportRuleController.php
+++ b/src/DataDefinitionsBundle/Controller/ImportRuleController.php
@@ -1,21 +1,21 @@
$value) {
- $conditionHeader = 'condition_'.$type.'___1___'.$key;
+ $conditionHeader = 'condition_' . $type . '___1___' . $key;
if (!array_key_exists($conditionHeader, $countPerType)) {
$countPerType[$conditionHeader] = 0;
}
- $countPerType[$conditionHeader]++;
+ ++$countPerType[$conditionHeader];
if ($countPerType[$conditionHeader] > 1) {
- $conditionHeader = 'condition_'.$type.'___'.$countPerType[$conditionHeader].'___'.$key;
+ $conditionHeader = 'condition_' . $type . '___' . $countPerType[$conditionHeader] . '___' . $key;
}
if (!in_array($conditionHeader, $headersCondition)) {
@@ -244,16 +243,16 @@ public function exportAction(Request $request): BinaryFileResponse
$type = $action['type'];
foreach ($action['configuration'] as $key => $value) {
- $actionHeader = 'action_'.$type.'___1___'.$key;
+ $actionHeader = 'action_' . $type . '___1___' . $key;
if (!array_key_exists($actionHeader, $countPerType)) {
$countPerType[$actionHeader] = 0;
}
- $countPerType[$actionHeader]++;
+ ++$countPerType[$actionHeader];
if ($countPerType[$actionHeader] > 1) {
- $actionHeader = 'action_'.$type.'___'.$countPerType[$actionHeader].'___'.$key;
+ $actionHeader = 'action_' . $type . '___' . $countPerType[$actionHeader] . '___' . $key;
}
if (!in_array($actionHeader, $headersAction)) {
@@ -277,16 +276,16 @@ public function exportAction(Request $request): BinaryFileResponse
$type = $condition['type'];
foreach ($condition['configuration'] as $key => $value) {
- $conditionHeader = 'condition_'.$type.'___1___'.$key;
+ $conditionHeader = 'condition_' . $type . '___1___' . $key;
if (!array_key_exists($conditionHeader, $countPerType)) {
$countPerType[$conditionHeader] = 0;
}
- $countPerType[$conditionHeader]++;
+ ++$countPerType[$conditionHeader];
if ($countPerType[$conditionHeader] > 1) {
- $conditionHeader = 'condition_'.$type.'___'.$countPerType[$conditionHeader].'___'.$key;
+ $conditionHeader = 'condition_' . $type . '___' . $countPerType[$conditionHeader] . '___' . $key;
}
if (is_array($value)) {
@@ -301,16 +300,16 @@ public function exportAction(Request $request): BinaryFileResponse
$type = $action['type'];
foreach ($action['configuration'] as $key => $value) {
- $actionHeader = 'action_'.$type.'___1___'.$key;
+ $actionHeader = 'action_' . $type . '___1___' . $key;
if (!array_key_exists($actionHeader, $countPerType)) {
$countPerType[$actionHeader] = 0;
}
- $countPerType[$actionHeader]++;
+ ++$countPerType[$actionHeader];
if ($countPerType[$actionHeader] > 1) {
- $actionHeader = 'action_'.$type.'___'.$countPerType[$actionHeader].'___'.$key;
+ $actionHeader = 'action_' . $type . '___' . $countPerType[$actionHeader] . '___' . $key;
}
if (is_array($value)) {
diff --git a/src/DataDefinitionsBundle/DataDefinitionsBundle.php b/src/DataDefinitionsBundle/DataDefinitionsBundle.php
index 04d6094c..0a5e4563 100644
--- a/src/DataDefinitionsBundle/DataDefinitionsBundle.php
+++ b/src/DataDefinitionsBundle/DataDefinitionsBundle.php
@@ -1,31 +1,24 @@
'/var/config/import-definitions',
- 'export_definitions' => '/var/config/export-definitions'
+ 'export_definitions' => '/var/config/export-definitions',
]);
$rootNode
->children()
->scalarNode('driver')->defaultValue(CoreShopResourceBundle::DRIVER_PIMCORE)->end()
- ->end();
+ ->end()
+ ;
$rootNode
->children()
@@ -131,7 +131,8 @@ public function getConfigTreeBuilder(): TreeBuilder
->end()
->end()
->end()
- ->end();
+ ->end()
+ ;
$this->addPimcoreResourcesSection($rootNode);
$this->addModelsSection($rootNode);
@@ -213,6 +214,7 @@ private function addPimcoreResourcesSection(ArrayNodeDefinition $node)
->end()
->end()
->end()
- ->end();
+ ->end()
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/DependencyInjection/DataDefinitionsExtension.php b/src/DataDefinitionsBundle/DependencyInjection/DataDefinitionsExtension.php
index c2bb2213..41b95b0c 100644
--- a/src/DataDefinitionsBundle/DependencyInjection/DataDefinitionsExtension.php
+++ b/src/DataDefinitionsBundle/DependencyInjection/DataDefinitionsExtension.php
@@ -1,28 +1,21 @@
processConfiguration($configuration, $configs);
@@ -90,40 +88,52 @@ public function load(array $configs, ContainerBuilder $container)
$container
->registerForAutoconfiguration(CleanerInterface::class)
- ->addTag(CleanerRegistryCompilerPass::CLEANER_TAG);
+ ->addTag(CleanerRegistryCompilerPass::CLEANER_TAG)
+ ;
$container
->registerForAutoconfiguration(ExportProviderInterface::class)
- ->addTag(ExportProviderRegistryCompilerPass::EXPORT_PROVIDER_TAG);
+ ->addTag(ExportProviderRegistryCompilerPass::EXPORT_PROVIDER_TAG)
+ ;
$container
->registerForAutoconfiguration(ExportRunnerInterface::class)
- ->addTag(ExportRunnerRegistryCompilerPass::EXPORT_RUNNER_TAG);
+ ->addTag(ExportRunnerRegistryCompilerPass::EXPORT_RUNNER_TAG)
+ ;
$container
->registerForAutoconfiguration(FetcherInterface::class)
- ->addTag(FetcherRegistryCompilerPass::FETCHER_TAG);
+ ->addTag(FetcherRegistryCompilerPass::FETCHER_TAG)
+ ;
$container
->registerForAutoconfiguration(FilterInterface::class)
- ->addTag(FilterRegistryCompilerPass::FILTER_TAG);
+ ->addTag(FilterRegistryCompilerPass::FILTER_TAG)
+ ;
$container
->registerForAutoconfiguration(GetterInterface::class)
- ->addTag(GetterRegistryCompilerPass::GETTER_TAG);
+ ->addTag(GetterRegistryCompilerPass::GETTER_TAG)
+ ;
$container
->registerForAutoconfiguration(InterpreterInterface::class)
- ->addTag(InterpreterRegistryCompilerPass::INTERPRETER_TAG);
+ ->addTag(InterpreterRegistryCompilerPass::INTERPRETER_TAG)
+ ;
$container
->registerForAutoconfiguration(LoaderInterface::class)
- ->addTag(LoaderRegistryCompilerPass::LOADER_TAG);
+ ->addTag(LoaderRegistryCompilerPass::LOADER_TAG)
+ ;
$container
->registerForAutoconfiguration(ImportProviderInterface::class)
- ->addTag(ProviderRegistryCompilerPass::IMPORT_PROVIDER_TAG);
+ ->addTag(ProviderRegistryCompilerPass::IMPORT_PROVIDER_TAG)
+ ;
$container
->registerForAutoconfiguration(RunnerInterface::class)
- ->addTag(RunnerRegistryCompilerPass::RUNNER_TAG);
+ ->addTag(RunnerRegistryCompilerPass::RUNNER_TAG)
+ ;
$container
->registerForAutoconfiguration(SetterInterface::class)
- ->addTag(SetterRegistryCompilerPass::SETTER_TAG);
+ ->addTag(SetterRegistryCompilerPass::SETTER_TAG)
+ ;
$container
->registerForAutoconfiguration(PersisterInterface::class)
- ->addTag(PersisterRegistryCompilerPass::PERSISTER_TAG);
+ ->addTag(PersisterRegistryCompilerPass::PERSISTER_TAG)
+ ;
$container->setParameter('data_definitions.config_location', $config['config_location'] ?? []);
diff --git a/src/DataDefinitionsBundle/Event/DefinitionEventInterface.php b/src/DataDefinitionsBundle/Event/DefinitionEventInterface.php
index 55cb2484..22fad903 100644
--- a/src/DataDefinitionsBundle/Event/DefinitionEventInterface.php
+++ b/src/DataDefinitionsBundle/Event/DefinitionEventInterface.php
@@ -1,19 +1,18 @@
eventDispatcher = $eventDispatcher;
}
@@ -32,7 +37,7 @@ public function dispatch(DataDefinitionInterface $definition, $eventName, $subje
$this->eventDispatcher->dispatch(
$event,
- sprintf('%s%s', $eventName, isset($params['child']) && $params['child'] ? '.child' : '')
+ sprintf('%s%s', $eventName, isset($params['child']) && $params['child'] ? '.child' : ''),
);
}
diff --git a/src/DataDefinitionsBundle/Event/EventDispatcherInterface.php b/src/DataDefinitionsBundle/Event/EventDispatcherInterface.php
index 915c82a8..c66b3899 100644
--- a/src/DataDefinitionsBundle/Event/EventDispatcherInterface.php
+++ b/src/DataDefinitionsBundle/Event/EventDispatcherInterface.php
@@ -1,17 +1,21 @@
definition = $definition;
$this->subject = $subject;
$this->params = $params;
diff --git a/src/DataDefinitionsBundle/Event/ImportDefinitionEvent.php b/src/DataDefinitionsBundle/Event/ImportDefinitionEvent.php
index b78d6829..665b89f9 100644
--- a/src/DataDefinitionsBundle/Event/ImportDefinitionEvent.php
+++ b/src/DataDefinitionsBundle/Event/ImportDefinitionEvent.php
@@ -1,32 +1,36 @@
definition = $definition;
$this->subject = $subject;
$this->options = $options;
diff --git a/src/DataDefinitionsBundle/EventListener/ObjectDeleteListener.php b/src/DataDefinitionsBundle/EventListener/ObjectDeleteListener.php
index 752d4322..453c4f71 100644
--- a/src/DataDefinitionsBundle/EventListener/ObjectDeleteListener.php
+++ b/src/DataDefinitionsBundle/EventListener/ObjectDeleteListener.php
@@ -1,23 +1,22 @@
formatMessage($definition, $mapping, $params, $value, $previous), 0, $previous);
}
@@ -38,8 +37,8 @@ public static function fromInterpreter(
MappingInterface $mapping,
array $params,
$value,
- ?Throwable $previous = null
- ): InterpreterException {
+ ?Throwable $previous = null,
+ ): self {
return new self($definition, $mapping, $params, $value, $previous);
}
@@ -48,7 +47,7 @@ private function formatMessage(
MappingInterface $mapping,
array $params,
$value,
- ?Throwable $previous = null
+ ?Throwable $previous = null,
): string {
$format = '%1$s, %2$s';
if ($previous !== null) {
@@ -59,7 +58,7 @@ private function formatMessage(
$format,
$this->formatDefinition($definition),
$this->formatSource($mapping, $value, $params['row'] ?? null),
- $previous ? $previous->getMessage() : null
+ $previous ? $previous->getMessage() : null,
);
}
@@ -82,7 +81,7 @@ private function formatSource(MappingInterface $mapping, $value, ?int $row = nul
$mapping->getInterpreter(),
var_export_pretty($mapping->getInterpreterConfig()),
$row,
- $this->formatValue($value)
+ $this->formatValue($value),
);
}
diff --git a/src/DataDefinitionsBundle/Exception/SpoutException.php b/src/DataDefinitionsBundle/Exception/SpoutException.php
index dbe9e5d4..bcfdd2a6 100644
--- a/src/DataDefinitionsBundle/Exception/SpoutException.php
+++ b/src/DataDefinitionsBundle/Exception/SpoutException.php
@@ -1,19 +1,18 @@
eventDispatcher->dispatch(
new ExportDefinitionEvent($definition, $total, $params),
- 'data_definitions.export.total'
+ 'data_definitions.export.total',
);
$this->runExport($definition, $params, $total, $fetcherContext, $fetcher, $provider);
$this->eventDispatcher->dispatch(
new ExportDefinitionEvent($definition, null, $params),
- 'data_definitions.export.finished'
+ 'data_definitions.export.finished',
);
}
@@ -84,8 +83,8 @@ private function getFetcher(ExportDefinitionInterface $definition): FetcherInter
throw new InvalidArgumentException(
sprintf(
'Export Definition %s has no valid fetcher configured',
- $definition->getName()
- )
+ $definition->getName(),
+ ),
);
}
@@ -101,8 +100,8 @@ private function getProvider(ExportDefinitionInterface $definition): ExportProvi
throw new InvalidArgumentException(
sprintf(
'Definition %s has no valid export provider configured',
- $definition->getName()
- )
+ $definition->getName(),
+ ),
);
}
@@ -115,7 +114,7 @@ private function runExport(
int $total,
FetcherContextInterface $fetcherContext,
FetcherInterface $fetcher,
- ExportProviderInterface $provider
+ ExportProviderInterface $provider,
) {
$getInheritedValues = DataObject::getGetInheritedValues();
DataObject::setGetInheritedValues($definition->isEnableInheritance());
@@ -126,11 +125,11 @@ function () use ($definition, $params, $total, $fetcher, $provider, $fetcherCont
$perLoop = 50;
$perRun = ceil($total / $perLoop);
- for ($i = 0; $i < $perRun; $i++) {
+ for ($i = 0; $i < $perRun; ++$i) {
$objects = $fetcher->fetch(
$fetcherContext,
$perLoop,
- $i * $perLoop
+ $i * $perLoop,
);
foreach ($objects as $object) {
@@ -142,11 +141,11 @@ function () use ($definition, $params, $total, $fetcher, $provider, $fetcherCont
$this->logger->info('Clean Garbage');
$this->eventDispatcher->dispatch(
new ExportDefinitionEvent($definition, 'Collect Garbage', $params),
- 'data_definitions.export.status'
+ 'data_definitions.export.status',
);
}
- $count++;
+ ++$count;
} catch (Exception $ex) {
$this->logger->error($ex);
@@ -154,9 +153,11 @@ function () use ($definition, $params, $total, $fetcher, $provider, $fetcherCont
$this->eventDispatcher->dispatch(
new ExportDefinitionEvent(
- $definition, sprintf('Error: %s', $ex->getMessage()), $params
+ $definition,
+ sprintf('Error: %s', $ex->getMessage()),
+ $params,
),
- 'data_definitions.export.status'
+ 'data_definitions.export.status',
);
if ($definition->getStopOnException()) {
@@ -166,23 +167,22 @@ function () use ($definition, $params, $total, $fetcher, $provider, $fetcherCont
$this->eventDispatcher->dispatch(
new ExportDefinitionEvent($definition, null, $params),
- 'data_definitions.export.progress'
+ 'data_definitions.export.progress',
);
}
if ($this->shouldStop) {
$this->eventDispatcher->dispatch(
new ExportDefinitionEvent($definition, 'Process has been stopped.', $params),
- 'data_definitions.export.status'
+ 'data_definitions.export.status',
);
return;
}
-
}
$provider->exportData($definition->getConfiguration(), $definition, $params);
},
- false === $definition->isFetchUnpublished()
+ false === $definition->isFetchUnpublished(),
);
DataObject::setGetInheritedValues($getInheritedValues);
@@ -192,7 +192,7 @@ private function exportRow(
ExportDefinitionInterface $definition,
Concrete $object,
$params,
- ExportProviderInterface $provider
+ ExportProviderInterface $provider,
): array {
$data = [];
@@ -201,11 +201,11 @@ private function exportRow(
$this->eventDispatcher->dispatch(
new ExportDefinitionEvent($definition, sprintf('Export Object %s', $object->getId()), $params),
- 'data_definitions.export.status'
+ 'data_definitions.export.status',
);
$this->eventDispatcher->dispatch(
new ExportDefinitionEvent($definition, $object, $params),
- 'data_definitions.export.object.start'
+ 'data_definitions.export.object.start',
);
if ($definition->getRunner()) {
@@ -230,7 +230,7 @@ private function exportRow(
$data,
$definition,
$params,
- $getter
+ $getter,
);
if ($getter instanceof DynamicColumnGetterInterface) {
@@ -245,11 +245,11 @@ private function exportRow(
$this->eventDispatcher->dispatch(
new ExportDefinitionEvent($definition, sprintf('Exported Object %s', $object->getFullPath()), $params),
- 'data_definitions.export.status'
+ 'data_definitions.export.status',
);
$this->eventDispatcher->dispatch(
new ExportDefinitionEvent($definition, $object, $params),
- 'data_definitions.export.object.finished'
+ 'data_definitions.export.object.finished',
);
if ($runner instanceof ExportRunnerInterface) {
@@ -265,7 +265,7 @@ private function getObjectValue(
$data,
ExportDefinitionInterface $definition,
$params,
- ?GetterInterface $getter
+ ?GetterInterface $getter,
) {
$value = null;
@@ -273,7 +273,7 @@ private function getObjectValue(
$getterContext = $this->contextFactory->createGetterContext($definition, $params, $object, $map);
$value = $getter->get($getterContext);
} else {
- $getter = 'get'.ucfirst($map->getFromColumn());
+ $getter = 'get' . ucfirst($map->getFromColumn());
if (method_exists($object, $getter)) {
$value = $object->$getter();
@@ -293,7 +293,7 @@ private function getObjectValue(
null,
$object,
$value,
- $map
+ $map,
);
$value = $interpreter->interpret($context);
} catch (UnexpectedValueException $ex) {
@@ -301,13 +301,11 @@ private function getObjectValue(
sprintf(
'Unexpected Value from Interpreter "%s" with message "%s"',
$map->getInterpreter(),
- $ex->getMessage()
- )
+ $ex->getMessage(),
+ ),
);
}
-
}
-
}
return $value;
diff --git a/src/DataDefinitionsBundle/Exporter/ExporterInterface.php b/src/DataDefinitionsBundle/Exporter/ExporterInterface.php
index 6258872d..ad39a0bd 100644
--- a/src/DataDefinitionsBundle/Exporter/ExporterInterface.php
+++ b/src/DataDefinitionsBundle/Exporter/ExporterInterface.php
@@ -1,19 +1,18 @@
setUnpublished($definition->isFetchUnpublished());
$rootNode = null;
@@ -64,26 +63,26 @@ private function getClassListing(ExportDefinitionInterface $definition, array $p
if (null !== $rootNode) {
$quotedPath = $list->quote($rootNode->getRealFullPath());
- $quotedWildcardPath = $list->quote(str_replace('//', '/', $rootNode->getRealFullPath().'/').'%');
- $conditionFilters[] = '(path = '.$quotedPath.' OR path LIKE '.$quotedWildcardPath.')';
+ $quotedWildcardPath = $list->quote(str_replace('//', '/', $rootNode->getRealFullPath() . '/') . '%');
+ $conditionFilters[] = '(path = ' . $quotedPath . ' OR path LIKE ' . $quotedWildcardPath . ')';
}
}
if (isset($params['query'])) {
$query = $this->filterQueryParam($params['query']);
if (!empty($query)) {
- $conditionFilters[] = 'oo_id IN (SELECT id FROM search_backend_data WHERE MATCH (`data`,`properties`) AGAINST ('.$list->quote(
- $query
- ).' IN BOOLEAN MODE))';
+ $conditionFilters[] = 'oo_id IN (SELECT id FROM search_backend_data WHERE MATCH (`data`,`properties`) AGAINST (' . $list->quote(
+ $query,
+ ) . ' IN BOOLEAN MODE))';
}
}
if (isset($params['only_direct_children']) && $params['only_direct_children'] == 'true' && null !== $rootNode) {
- $conditionFilters[] = 'parentId = '.$rootNode->getId();
+ $conditionFilters[] = 'parentId = ' . $rootNode->getId();
}
if (isset($params['condition'])) {
- $conditionFilters[] = '('.$params['condition'].')';
+ $conditionFilters[] = '(' . $params['condition'] . ')';
}
if (isset($params['ids'])) {
$quotedIds = [];
@@ -91,7 +90,7 @@ private function getClassListing(ExportDefinitionInterface $definition, array $p
$quotedIds[] = $list->quote($id);
}
if (!empty($quotedIds)) {
- $conditionFilters[] = 'oo_id IN ('.implode(',', $quotedIds).')';
+ $conditionFilters[] = 'oo_id IN (' . implode(',', $quotedIds) . ')';
}
}
diff --git a/src/DataDefinitionsBundle/Filter/FilterInterface.php b/src/DataDefinitionsBundle/Filter/FilterInterface.php
index 1c5b3562..3b209560 100644
--- a/src/DataDefinitionsBundle/Filter/FilterInterface.php
+++ b/src/DataDefinitionsBundle/Filter/FilterInterface.php
@@ -1,19 +1,18 @@
cleaners = $cleaners;
}
diff --git a/src/DataDefinitionsBundle/Form/Type/DefinitionChoiceType.php b/src/DataDefinitionsBundle/Form/Type/DefinitionChoiceType.php
index afd9dd3e..3737312d 100644
--- a/src/DataDefinitionsBundle/Form/Type/DefinitionChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/DefinitionChoiceType.php
@@ -1,22 +1,21 @@
false,
'active' => true,
- ]
- );
+ ],
+ )
+ ;
}
public function getParent(): ?string
diff --git a/src/DataDefinitionsBundle/Form/Type/ExportDefinitionType.php b/src/DataDefinitionsBundle/Form/Type/ExportDefinitionType.php
index b5b52f69..89420307 100644
--- a/src/DataDefinitionsBundle/Form/Type/ExportDefinitionType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ExportDefinitionType.php
@@ -1,19 +1,18 @@
add('fetchUnpublished', CheckboxType::class)
->add('failureNotificationDocument', IntegerType::class)
->add('successNotificationDocument', IntegerType::class)
- ->add('mapping', ExportMappingCollectionType::class);
+ ->add('mapping', ExportMappingCollectionType::class)
+ ;
$builder
->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) {
@@ -93,7 +94,8 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
}
$this->addConfigurationFields($event->getForm(), $formType);
- });
+ })
+ ;
$builder
->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) {
@@ -130,22 +132,17 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
}
$this->addFetcherConfigurationFields($event->getForm(), $formType);
- });
+ })
+ ;
}
- /**
- * @param FormInterface $form
- * @param string $configurationType
- */
protected function addConfigurationFields(FormInterface $form, string $configurationType): void
{
$form->add('configuration', $configurationType);
}
/**
- * @param FormInterface $form
* @param mixed $data
- * @return string|null
*/
protected function getRegistryIdentifier(FormInterface $form, $data = null): ?string
{
@@ -160,19 +157,13 @@ protected function getRegistryIdentifier(FormInterface $form, $data = null): ?st
return null;
}
- /**
- * @param FormInterface $form
- * @param string $configurationType
- */
protected function addFetcherConfigurationFields(FormInterface $form, string $configurationType): void
{
$form->add('fetcherConfig', $configurationType);
}
/**
- * @param FormInterface $form
* @param mixed $data
- * @return string|null
*/
protected function getFetcherRegistryIdentifier(FormInterface $form, $data = null): ?string
{
diff --git a/src/DataDefinitionsBundle/Form/Type/ExportMappingCollectionType.php b/src/DataDefinitionsBundle/Form/Type/ExportMappingCollectionType.php
index 066fca32..03b64b77 100644
--- a/src/DataDefinitionsBundle/Form/Type/ExportMappingCollectionType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ExportMappingCollectionType.php
@@ -1,19 +1,18 @@
dataMapper = $dataMapper;
}
diff --git a/src/DataDefinitionsBundle/Form/Type/ExportMappingType.php b/src/DataDefinitionsBundle/Form/Type/ExportMappingType.php
index 9c00e410..a47ed592 100644
--- a/src/DataDefinitionsBundle/Form/Type/ExportMappingType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ExportMappingType.php
@@ -1,37 +1,42 @@
add('fromColumn', TextType::class)
->add('toColumn', TextType::class)
->add('getter', TextType::class)
- ->add('interpreter', TextType::class);
+ ->add('interpreter', TextType::class)
+ ;
/** Getter Configurations */
$builder
@@ -75,7 +81,8 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
}
$this->addGetterConfigurationFields($event->getForm(), $formType);
- });
+ })
+ ;
/** Interpreter Configurations */
$builder
@@ -105,32 +112,22 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
}
$this->addInterpreterConfigurationFields($event->getForm(), $formType);
- });
+ })
+ ;
}
- /**
- * @param FormInterface $form
- * @param string $configurationType
- */
protected function addGetterConfigurationFields(FormInterface $form, string $configurationType): void
{
$form->add('getterConfig', $configurationType);
}
- /**
- * @param FormInterface $form
- * @param string $configurationType
- */
protected function addInterpreterConfigurationFields(FormInterface $form, string $configurationType): void
{
$form->add('interpreterConfig', $configurationType);
}
-
/**
- * @param FormInterface $form
* @param mixed $data
- * @return string|null
*/
protected function getGetterRegistryIdentifier(FormInterface $form, $data = null): ?string
{
@@ -142,9 +139,7 @@ protected function getGetterRegistryIdentifier(FormInterface $form, $data = null
}
/**
- * @param FormInterface $form
* @param mixed $data
- * @return string|null
*/
protected function getInterpreterRegistryIdentifier(FormInterface $form, $data = null): ?string
{
diff --git a/src/DataDefinitionsBundle/Form/Type/ExportProvider/CsvProviderType.php b/src/DataDefinitionsBundle/Form/Type/ExportProvider/CsvProviderType.php
index 699e401e..052324f2 100644
--- a/src/DataDefinitionsBundle/Form/Type/ExportProvider/CsvProviderType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ExportProvider/CsvProviderType.php
@@ -1,19 +1,18 @@
add('delimiter', TextType::class)
->add('enclosure', TextType::class)
- ->add('escape', TextType::class, ['empty_data' => '']);
+ ->add('escape', TextType::class, ['empty_data' => ''])
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/ExportProvider/XmlProviderType.php b/src/DataDefinitionsBundle/Form/Type/ExportProvider/XmlProviderType.php
index 18125fff..502468fb 100644
--- a/src/DataDefinitionsBundle/Form/Type/ExportProvider/XmlProviderType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ExportProvider/XmlProviderType.php
@@ -1,19 +1,18 @@
add('xsltPath', TextType::class);
+ ->add('xsltPath', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/ExportProviderChoiceType.php b/src/DataDefinitionsBundle/Form/Type/ExportProviderChoiceType.php
index daf14bc3..5b5c40cf 100644
--- a/src/DataDefinitionsBundle/Form/Type/ExportProviderChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ExportProviderChoiceType.php
@@ -1,19 +1,18 @@
providers = $providers;
}
diff --git a/src/DataDefinitionsBundle/Form/Type/ExportRunnerChoiceType.php b/src/DataDefinitionsBundle/Form/Type/ExportRunnerChoiceType.php
index 921bc0e1..d1d7c478 100644
--- a/src/DataDefinitionsBundle/Form/Type/ExportRunnerChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ExportRunnerChoiceType.php
@@ -1,19 +1,18 @@
runners = $runners;
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Fetcher/ObjectsFetcherType.php b/src/DataDefinitionsBundle/Form/Type/Fetcher/ObjectsFetcherType.php
index c9e0a739..6b700437 100644
--- a/src/DataDefinitionsBundle/Form/Type/Fetcher/ObjectsFetcherType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Fetcher/ObjectsFetcherType.php
@@ -1,19 +1,18 @@
add('unpublished', CheckboxType::class);
+ ->add('unpublished', CheckboxType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/FetcherChoiceType.php b/src/DataDefinitionsBundle/Form/Type/FetcherChoiceType.php
index d119e09c..d7f43ab3 100644
--- a/src/DataDefinitionsBundle/Form/Type/FetcherChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/FetcherChoiceType.php
@@ -1,19 +1,18 @@
fetchers = $fetchers;
}
diff --git a/src/DataDefinitionsBundle/Form/Type/FilterChoiceType.php b/src/DataDefinitionsBundle/Form/Type/FilterChoiceType.php
index f83ff8c5..62ceca37 100644
--- a/src/DataDefinitionsBundle/Form/Type/FilterChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/FilterChoiceType.php
@@ -1,15 +1,19 @@
filters = $filters;
}
@@ -39,4 +44,3 @@ public function getParent(): ?string
return ChoiceType::class;
}
}
-
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportDefinitionType.php b/src/DataDefinitionsBundle/Form/Type/ImportDefinitionType.php
index f620d20c..2b01a32a 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportDefinitionType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportDefinitionType.php
@@ -1,19 +1,18 @@
add('failureNotificationDocument', IntegerType::class)
->add('successNotificationDocument', IntegerType::class)
->add('mapping', ImportMappingCollectionType::class)
- ->add('forceLoadObject', CheckboxType::class);
+ ->add('forceLoadObject', CheckboxType::class)
+ ;
$builder
->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) {
@@ -100,22 +100,17 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
}
$this->addConfigurationFields($event->getForm(), $formType);
- });
+ })
+ ;
}
- /**
- * @param FormInterface $form
- * @param string $configurationType
- */
protected function addConfigurationFields(FormInterface $form, string $configurationType): void
{
$form->add('configuration', $configurationType);
}
/**
- * @param FormInterface $form
* @param mixed $data
- * @return string|null
*/
protected function getRegistryIdentifier(FormInterface $form, $data = null): ?string
{
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportMappingCollectionType.php b/src/DataDefinitionsBundle/Form/Type/ImportMappingCollectionType.php
index 63a30ef6..f49eae66 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportMappingCollectionType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportMappingCollectionType.php
@@ -1,19 +1,18 @@
dataMapper = $dataMapper;
}
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportMappingType.php b/src/DataDefinitionsBundle/Form/Type/ImportMappingType.php
index 0200ef19..979f87fb 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportMappingType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportMappingType.php
@@ -1,40 +1,40 @@
add('toColumn', TextType::class)
->add('primaryIdentifier', CheckboxType::class)
->add('setter', TextType::class)
- ->add('interpreter', TextType::class);
+ ->add('interpreter', TextType::class)
+ ;
/** Setter Configurations */
$builder
@@ -79,7 +80,8 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
}
$this->addSetterConfigurationFields($event->getForm(), $formType);
- });
+ })
+ ;
/** Interpreter Configurations */
$builder
@@ -109,31 +111,22 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
}
$this->addInterpreterConfigurationFields($event->getForm(), $formType);
- });
+ })
+ ;
}
- /**
- * @param FormInterface $form
- * @param string $configurationType
- */
protected function addSetterConfigurationFields(FormInterface $form, string $configurationType): void
{
$form->add('setterConfig', $configurationType);
}
- /**
- * @param FormInterface $form
- * @param string $configurationType
- */
protected function addInterpreterConfigurationFields(FormInterface $form, string $configurationType): void
{
$form->add('interpreterConfig', $configurationType);
}
/**
- * @param FormInterface $form
* @param mixed $data
- * @return string|null
*/
protected function getSetterRegistryIdentifier(FormInterface $form, $data = null): ?string
{
@@ -145,9 +138,7 @@ protected function getSetterRegistryIdentifier(FormInterface $form, $data = null
}
/**
- * @param FormInterface $form
* @param mixed $data
- * @return string|null
*/
protected function getInterpreterRegistryIdentifier(FormInterface $form, $data = null): ?string
{
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/CsvProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/CsvProviderType.php
index 86b58873..2dcfddd7 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/CsvProviderType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/CsvProviderType.php
@@ -1,19 +1,18 @@
add('csvExample', TextType::class)
->add('delimiter', TextType::class)
->add('enclosure', TextType::class)
- ->add('csvHeaders', TextType::class);
+ ->add('csvHeaders', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExcelProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExcelProviderType.php
index 615f4a4f..114a266e 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExcelProviderType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExcelProviderType.php
@@ -1,19 +1,18 @@
add('exampleFile', TextType::class)
- ->add('excelHeaders', TextType::class);
+ ->add('excelHeaders', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExternalSqlProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExternalSqlProviderType.php
index a3d84442..d72422e4 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExternalSqlProviderType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExternalSqlProviderType.php
@@ -1,19 +1,18 @@
add('database', TextType::class)
->add('adapter', TextType::class)
->add('port', NumberType::class)
- ->add('query', TextType::class);
+ ->add('query', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/JsonProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/JsonProviderType.php
index 12551322..2b07b6ca 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/JsonProviderType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/JsonProviderType.php
@@ -1,19 +1,18 @@
add('jsonExample', TextType::class);
+ ->add('jsonExample', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/RawProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/RawProviderType.php
index 7e5a1adf..64a2dd4b 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/RawProviderType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/RawProviderType.php
@@ -1,19 +1,18 @@
add('headers', TextType::class);
+ ->add('headers', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/SqlProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/SqlProviderType.php
index 5753739d..2814cf6e 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/SqlProviderType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/SqlProviderType.php
@@ -1,19 +1,18 @@
add('query', TextType::class);
+ ->add('query', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/XmlProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/XmlProviderType.php
index e0c1b441..c1088d7a 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/XmlProviderType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/XmlProviderType.php
@@ -1,19 +1,18 @@
add('exampleFile', TextType::class)
->add('xPath', TextType::class)
- ->add('exampleXPath', TextType::class);
+ ->add('exampleXPath', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProviderChoiceType.php b/src/DataDefinitionsBundle/Form/Type/ImportProviderChoiceType.php
index d1501604..18ee4562 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportProviderChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportProviderChoiceType.php
@@ -1,19 +1,18 @@
providers = $providers;
}
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportRulesImportType.php b/src/DataDefinitionsBundle/Form/Type/ImportRulesImportType.php
index f3f03486..030d1c3f 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportRulesImportType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportRulesImportType.php
@@ -1,19 +1,18 @@
add('path', TextType::class);
+ ->add('path', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetUrlInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetUrlInterpreterType.php
index 601cf9e0..2bcf7b1b 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetUrlInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetUrlInterpreterType.php
@@ -1,19 +1,18 @@
add('deduplicate_by_hash', CheckboxType::class)
->add('use_content_disposition', CheckboxType::class)
->add('relocate_existing_objects', CheckboxType::class)
- ->add('rename_existing_objects', CheckboxType::class);
+ ->add('rename_existing_objects', CheckboxType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetsUrlInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetsUrlInterpreterType.php
index c954c344..b726768e 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetsUrlInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetsUrlInterpreterType.php
@@ -1,19 +1,18 @@
add('deduplicate_by_hash', CheckboxType::class)
->add('use_content_disposition', CheckboxType::class)
->add('relocate_existing_objects', CheckboxType::class)
- ->add('rename_existing_objects', CheckboxType::class);
+ ->add('rename_existing_objects', CheckboxType::class)
+ ;
}
}
-
-
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/CarbonInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/CarbonInterpreterType.php
index feee5862..5d70f144 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/CarbonInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/CarbonInterpreterType.php
@@ -1,19 +1,21 @@
add('date_format', TextType::class);
+ ->add('date_format', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/ConditionalInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/ConditionalInterpreterType.php
index 1dd5730e..b6120d3d 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/ConditionalInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/ConditionalInterpreterType.php
@@ -1,19 +1,18 @@
add('condition', TextType::class)
->add('true_interpreter', InterpreterType::class)
- ->add('false_interpreter', InterpreterType::class);
+ ->add('false_interpreter', InterpreterType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/MoneyInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/MoneyInterpreterType.php
index 2c0fb304..8840a4b3 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/MoneyInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/MoneyInterpreterType.php
@@ -2,6 +2,20 @@
declare(strict_types=1);
+/*
+ * CoreShop
+ *
+ * This source file is available under two different licenses:
+ * - GNU General Public License version 3 (GPLv3)
+ * - Data Definitions Commercial License (DDCL)
+ * Full copyright and license information is available in
+ * LICENSE.md which is distributed with this source code.
+ *
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @license GPLv3 and DDCL
+ *
+ */
+
namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\CoreShop;
use CoreShop\Bundle\CurrencyBundle\Form\Type\CurrencyChoiceType;
@@ -24,14 +38,14 @@ function ($value) {
return $value;
},
function ($value) {
-
if (isset($value['currency']) && $value['currency'] instanceof CurrencyInterface) {
$value['currency'] = $value['currency']->getId();
}
return $value;
- }
- )
- );
+ },
+ ),
+ )
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/PriceInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/PriceInterpreterType.php
index 76b11906..9da10687 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/PriceInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/PriceInterpreterType.php
@@ -1,19 +1,18 @@
add('isFloat', CheckboxType::class);
+ ->add('isFloat', CheckboxType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/StoresInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/StoresInterpreterType.php
index d267b78b..b593b74c 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/StoresInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/StoresInterpreterType.php
@@ -1,28 +1,27 @@
add('value', TextType::class);
+ ->add('value', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/DefinitionType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/DefinitionType.php
index 0763c5ab..4c319c7e 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/DefinitionType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/DefinitionType.php
@@ -1,30 +1,30 @@
add('definition', DefinitionChoiceType::class);
+ ->add('definition', DefinitionChoiceType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/ExpressionInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/ExpressionInterpreterType.php
index f59ec427..c9ebc151 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/ExpressionInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/ExpressionInterpreterType.php
@@ -1,19 +1,18 @@
add('expression', TextType::class);
+ ->add('expression', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/HrefInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/HrefInterpreterType.php
index 5f5759c1..236a26e4 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/HrefInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/HrefInterpreterType.php
@@ -1,19 +1,18 @@
'document',
],
])
- ->add('class', TextType::class);
+ ->add('class', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterCollectionType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterCollectionType.php
index 6936a8b2..e4e4c651 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterCollectionType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterCollectionType.php
@@ -1,19 +1,18 @@
registry = $registry;
}
@@ -42,8 +42,8 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
$options['entry_type'],
array_replace(
$options['entry_options'],
- ['configuration_type' => $type]
- )
+ ['configuration_type' => $type],
+ ),
);
$prototypes[$type] = $formBuilder->getForm();
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterType.php
index 54d0263a..3cac74f4 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterType.php
@@ -1,37 +1,37 @@
formTypeRegistry = $formTypeRegistry;
}
@@ -40,7 +40,8 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
parent::buildForm($builder, $options);
$builder
- ->add('type', InterpreterChoiceType::class);
+ ->add('type', InterpreterChoiceType::class)
+ ;
$builder
->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) {
@@ -75,7 +76,8 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
}
$this->addConfigurationFields($event->getForm(), $formType);
- });
+ })
+ ;
}
public function configureOptions(OptionsResolver $resolver): void
@@ -84,23 +86,17 @@ public function configureOptions(OptionsResolver $resolver): void
$resolver
->setDefault('configuration_type', null)
- ->setAllowedTypes('configuration_type', ['string', 'null']);
+ ->setAllowedTypes('configuration_type', ['string', 'null'])
+ ;
}
- /**
- * @param FormInterface $form
- * @param string $configurationType
- */
protected function addConfigurationFields(FormInterface $form, string $configurationType): void
{
$form->add('interpreterConfig', $configurationType);
}
/**
- * @param FormInterface $form
* @param mixed $data
- *
- * @return string|null
*/
protected function getRegistryIdentifier(FormInterface $form, $data = null): ?string
{
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/IteratorInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/IteratorInterpreterType.php
index 0fddf297..c2f11b68 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/IteratorInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/IteratorInterpreterType.php
@@ -1,19 +1,18 @@
add('interpreter', InterpreterType::class);
+ ->add('interpreter', InterpreterType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingInterpreterType.php
index 67c8e399..8e8ad5d0 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingInterpreterType.php
@@ -1,19 +1,18 @@
true,
'allow_delete' => true,
])
- ->add('return_null_when_not_found', CheckboxType::class);
+ ->add('return_null_when_not_found', CheckboxType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingType.php
index debd0e78..ea095a89 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingType.php
@@ -1,19 +1,18 @@
add('from', TextType::class)
- ->add('to', TextType::class);
+ ->add('to', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/MetadataInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/MetadataInterpreterType.php
index 159fd0e4..b6011fb4 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/MetadataInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/MetadataInterpreterType.php
@@ -1,19 +1,18 @@
add('class', TextType::class)
- ->add('metadata', TextType::class);
+ ->add('metadata', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/MultiHrefInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/MultiHrefInterpreterType.php
index 54f2493f..bf2a0371 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/MultiHrefInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/MultiHrefInterpreterType.php
@@ -1,19 +1,18 @@
add('class', TextType::class);
+ ->add('class', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/NestedInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/NestedInterpreterType.php
index 7fb9cb3b..cd37e651 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/NestedInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/NestedInterpreterType.php
@@ -1,19 +1,18 @@
add('interpreters', InterpreterCollectionType::class);
+ ->add('interpreters', InterpreterCollectionType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/ObjectResolverType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/ObjectResolverType.php
index e0457b02..dae58c95 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/ObjectResolverType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/ObjectResolverType.php
@@ -1,26 +1,25 @@
add('class', ClassChoiceType::class)
->add('field', TextType::class)
- ->add('match_unpublished', CheckboxType::class);
+ ->add('match_unpublished', CheckboxType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/QuantityValueInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/QuantityValueInterpreterType.php
index ff6b5f06..c1028c78 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/QuantityValueInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/QuantityValueInterpreterType.php
@@ -1,19 +1,18 @@
add('unit', TextType::class);
+ ->add('unit', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/SpecificObjectInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/SpecificObjectInterpreterType.php
index 83e1b068..3d559f4f 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/SpecificObjectInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/SpecificObjectInterpreterType.php
@@ -1,19 +1,18 @@
add('objectId', TextType::class);
+ ->add('objectId', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/TwigInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/TwigInterpreterType.php
index 1dbfd9ea..e36cbadc 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/TwigInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/TwigInterpreterType.php
@@ -1,19 +1,18 @@
add('template', TextareaType::class);
+ ->add('template', TextareaType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/TypeCastingInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/TypeCastingInterpreterType.php
index 68d9f43b..1d3525d1 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/TypeCastingInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/TypeCastingInterpreterType.php
@@ -1,25 +1,24 @@
TypeCastingInterpreter::TYPE_STRING,
TypeCastingInterpreter::TYPE_BOOLEAN => TypeCastingInterpreter::TYPE_BOOLEAN,
],
- ]);
+ ])
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/InterpreterChoiceType.php b/src/DataDefinitionsBundle/Form/Type/InterpreterChoiceType.php
index 0ed2e50f..6bd3daca 100644
--- a/src/DataDefinitionsBundle/Form/Type/InterpreterChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/InterpreterChoiceType.php
@@ -1,19 +1,18 @@
interpreters = $interpreters;
}
diff --git a/src/DataDefinitionsBundle/Form/Type/LoaderChoiceType.php b/src/DataDefinitionsBundle/Form/Type/LoaderChoiceType.php
index 179f088b..13e5e32e 100644
--- a/src/DataDefinitionsBundle/Form/Type/LoaderChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/LoaderChoiceType.php
@@ -1,19 +1,18 @@
loaders = $loaders;
}
diff --git a/src/DataDefinitionsBundle/Form/Type/NoConfigurationType.php b/src/DataDefinitionsBundle/Form/Type/NoConfigurationType.php
index 8ba71444..4640b8fd 100644
--- a/src/DataDefinitionsBundle/Form/Type/NoConfigurationType.php
+++ b/src/DataDefinitionsBundle/Form/Type/NoConfigurationType.php
@@ -1,19 +1,18 @@
persisters = $persisters;
}
diff --git a/src/DataDefinitionsBundle/Form/Type/ProcessManager/ExportDefinitionObjectStartupForm.php b/src/DataDefinitionsBundle/Form/Type/ProcessManager/ExportDefinitionObjectStartupForm.php
index 591b24f5..6c5d52a7 100644
--- a/src/DataDefinitionsBundle/Form/Type/ProcessManager/ExportDefinitionObjectStartupForm.php
+++ b/src/DataDefinitionsBundle/Form/Type/ProcessManager/ExportDefinitionObjectStartupForm.php
@@ -1,19 +1,18 @@
true,
'entry_type' => TextType::class,
'required' => false,
- ]);
+ ])
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/ProcessManager/ImportDefinitionsType.php b/src/DataDefinitionsBundle/Form/Type/ProcessManager/ImportDefinitionsType.php
index 928e814d..de1efb01 100644
--- a/src/DataDefinitionsBundle/Form/Type/ProcessManager/ImportDefinitionsType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ProcessManager/ImportDefinitionsType.php
@@ -1,19 +1,18 @@
add('definition', TextType::class)
- ->add('params', TextType::class);
+ ->add('params', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/RunnerChoiceType.php b/src/DataDefinitionsBundle/Form/Type/RunnerChoiceType.php
index 4d1f57bf..c2834dec 100644
--- a/src/DataDefinitionsBundle/Form/Type/RunnerChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/RunnerChoiceType.php
@@ -1,19 +1,18 @@
runners = $runners;
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Setter/ClassificationStoreSetterType.php b/src/DataDefinitionsBundle/Form/Type/Setter/ClassificationStoreSetterType.php
index 01f28972..a7c95c0d 100644
--- a/src/DataDefinitionsBundle/Form/Type/Setter/ClassificationStoreSetterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Setter/ClassificationStoreSetterType.php
@@ -1,19 +1,18 @@
add('field', TextType::class)
->add('keyConfig', IntegerType::class)
- ->add('groupConfig', IntegerType::class);
+ ->add('groupConfig', IntegerType::class)
+ ;
}
}
-
-
diff --git a/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StorePriceSetterType.php b/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StorePriceSetterType.php
index 29753064..e25d0474 100644
--- a/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StorePriceSetterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StorePriceSetterType.php
@@ -1,28 +1,27 @@
add('field', TextType::class)
->add('class', TextType::class)
- ->add('keys', TextType::class);
+ ->add('keys', TextType::class)
+ ;
}
}
-
-
diff --git a/src/DataDefinitionsBundle/Form/Type/Setter/LocalizedFieldSetterType.php b/src/DataDefinitionsBundle/Form/Type/Setter/LocalizedFieldSetterType.php
index 65b2021a..a66e16f8 100644
--- a/src/DataDefinitionsBundle/Form/Type/Setter/LocalizedFieldSetterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Setter/LocalizedFieldSetterType.php
@@ -1,19 +1,18 @@
add('language', TextType::class);
+ ->add('language', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/Setter/ObjectBrickSetterType.php b/src/DataDefinitionsBundle/Form/Type/Setter/ObjectBrickSetterType.php
index e48ae527..61fccccd 100644
--- a/src/DataDefinitionsBundle/Form/Type/Setter/ObjectBrickSetterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Setter/ObjectBrickSetterType.php
@@ -1,19 +1,18 @@
add('brickField', TextType::class)
- ->add('class', TextType::class);
+ ->add('class', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Form/Type/SetterChoiceType.php b/src/DataDefinitionsBundle/Form/Type/SetterChoiceType.php
index 69615ebc..118cd016 100644
--- a/src/DataDefinitionsBundle/Form/Type/SetterChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/SetterChoiceType.php
@@ -1,19 +1,18 @@
setters = $setters;
}
diff --git a/src/DataDefinitionsBundle/Getter/DynamicColumnGetterInterface.php b/src/DataDefinitionsBundle/Getter/DynamicColumnGetterInterface.php
index b6145199..b695fbd1 100644
--- a/src/DataDefinitionsBundle/Getter/DynamicColumnGetterInterface.php
+++ b/src/DataDefinitionsBundle/Getter/DynamicColumnGetterInterface.php
@@ -1,19 +1,18 @@
filterRegistry->get($filterType);
}
-
$object = $this->importRow(
$definition,
$row,
$dataSet,
$params,
$filter,
- $runner
+ $runner,
);
}
@@ -132,7 +129,7 @@ public function doImportAsync(ImportDefinitionInterface $definition, array $para
$definition->getId(),
$row,
$params,
- )
+ ),
);
}
}
@@ -155,7 +152,6 @@ public function doImport(ImportDefinitionInterface $definition, $params): array
$filter = $this->filterRegistry->get($filterType);
}
-
/** @var ImportDataSetInterface|array $data */
$data = $this->getData($definition, $params);
@@ -169,7 +165,6 @@ public function doImport(ImportDefinitionInterface $definition, $params): array
$runner = $this->runnerRegistry->get($definition->getRunner());
}
-
if ((\is_countable($data) || $data instanceof Countable) && ($count = \count($data)) > 0) {
$this->eventDispatcher->dispatch($definition, 'data_definitions.import.total', $count, $params);
}
@@ -192,7 +187,7 @@ public function doImport(ImportDefinitionInterface $definition, $params): array
$this->eventDispatcher->dispatch(
$definition,
'data_definitions.import.status',
- sprintf('Running Cleaner "%s"', $cleanerType)
+ sprintf('Running Cleaner "%s"', $cleanerType),
);
if ($cleaner instanceof ParamsAwareInterface) {
@@ -209,7 +204,7 @@ public function doImport(ImportDefinitionInterface $definition, $params): array
$this->eventDispatcher->dispatch(
$definition,
'data_definitions.import.status',
- sprintf('Finished Cleaner "%s"', $cleanerType)
+ sprintf('Finished Cleaner "%s"', $cleanerType),
);
}
@@ -234,7 +229,7 @@ public function processSuccessfullImport(ImportDefinitionInterface $definition,
$definition,
Document::getById($definition->getSuccessNotificationDocument()),
$objectIds,
- $exceptions
+ $exceptions,
);
$this->eventDispatcher->dispatch($definition, 'data_definitions.import.success', $params);
}
@@ -249,7 +244,7 @@ public function processFailedImport(ImportDefinitionInterface $definition, $para
$definition,
Document::getById($definition->getFailureNotificationDocument()),
$objectIds,
- $exceptions
+ $exceptions,
);
$this->eventDispatcher->dispatch($definition, 'data_definitions.import.failure', $params);
}
@@ -263,7 +258,7 @@ private function sendDocument(
ImportDefinitionInterface $definition,
?Document $document,
array $objectIds,
- array $exceptions
+ array $exceptions,
) {
if ($document instanceof Document) {
$params = [
@@ -322,7 +317,7 @@ private function runImport(
$dataSet,
array_merge($params, ['row' => $count]),
$filter,
- $runner
+ $runner,
);
if ($object instanceof Concrete) {
@@ -337,7 +332,7 @@ private function runImport(
$definition,
'data_definitions.import.failure',
sprintf('Error: %s', $ex->getMessage()),
- $params
+ $params,
);
if ($definition->getStopOnException()) {
@@ -351,11 +346,11 @@ private function runImport(
$definition,
'data_definitions.import.status',
'Collect Garbage',
- $params
+ $params,
);
}
- $count++;
+ ++$count;
}
$this->eventDispatcher->dispatch($definition, 'data_definitions.import.progress', '', $params);
@@ -364,7 +359,7 @@ private function runImport(
$this->eventDispatcher->dispatch(
$definition,
'data_definitions.import.status',
- 'Process has been stopped.'
+ 'Process has been stopped.',
);
return [$objectIds, $exceptions];
@@ -390,7 +385,7 @@ private function importRow(
$definition,
'data_definitions.import.status',
'Ignoring new Object',
- $params
+ $params,
);
return null;
@@ -401,7 +396,7 @@ private function importRow(
$definition,
'data_definitions.import.status',
'Ignoring existing Object',
- $params
+ $params,
);
return null;
@@ -420,7 +415,7 @@ private function importRow(
$definition,
'data_definitions.import.status',
'Filtered Object',
- $params
+ $params,
);
return null;
@@ -431,13 +426,13 @@ private function importRow(
$definition,
'data_definitions.import.status',
sprintf('Import Object %s', ($object->getId() ? $object->getFullPath() : 'new')),
- $params
+ $params,
);
$this->eventDispatcher->dispatch(
$definition,
'data_definitions.import.object.start',
$object,
- $params
+ $params,
);
$runnerContext = $this->contextFactory->createRunnerContext($definition, $params, $data, $dataSet, $object);
@@ -456,7 +451,7 @@ private function importRow(
foreach ($definition->getMapping() as $mapItem) {
$value = null;
- if (array_key_exists($mapItem->getFromColumn(), $data) || $mapItem->getFromColumn() === "custom") {
+ if (array_key_exists($mapItem->getFromColumn(), $data) || $mapItem->getFromColumn() === 'custom') {
$value = $data[$mapItem->getFromColumn()] ?? null;
$this->setObjectValue($object, $mapItem, $value, $data, $dataSet, $definition, $params, $runner);
}
@@ -483,14 +478,14 @@ private function importRow(
$definition,
'data_definitions.import.status',
sprintf('Imported Object %s', $object->getFullPath()),
- $params
+ $params,
);
} else {
$this->eventDispatcher->dispatch(
$definition,
'data_definitions.import.status',
sprintf('Skipped Object %s', $object->getFullPath()),
- $params
+ $params,
);
}
@@ -498,13 +493,13 @@ private function importRow(
$definition,
'data_definitions.import.status',
sprintf('Imported Object %s', $object->getFullPath()),
- $params
+ $params,
);
$this->eventDispatcher->dispatch(
$definition,
'data_definitions.import.object.finished',
$object,
- $params
+ $params,
);
if ($runner instanceof RunnerInterface) {
@@ -526,7 +521,7 @@ private function setObjectValue(
ImportDataSetInterface $dataSet,
ImportDefinitionInterface $definition,
array $params,
- RunnerInterface $runner = null
+ RunnerInterface $runner = null,
): void {
if ($map->getInterpreter()) {
try {
@@ -549,7 +544,7 @@ private function setObjectValue(
$dataSet,
$object,
$value,
- $map
+ $map,
);
$value = $interpreter->interpret($context);
} catch (UnexpectedValueException $ex) {
@@ -557,15 +552,13 @@ private function setObjectValue(
sprintf(
'Unexpected Value from Interpreter "%s" with message "%s"',
$map->getInterpreter(),
- $ex->getMessage()
- )
+ $ex->getMessage(),
+ ),
);
}
-
} catch (DoNotSetException $ex) {
return;
}
-
}
if ($map->getToColumn() === 'o_type' && $map->getSetter() !== 'object_type') {
@@ -595,7 +588,7 @@ private function setObjectValue(
$map,
$data,
$dataSet,
- $value
+ $value,
);
if ($setter instanceof SetterInterface) {
@@ -614,10 +607,10 @@ private function getObject(
ImportDefinitionInterface $definition,
$data,
ImportDataSetInterface $dataSet,
- $params
+ $params,
): Concrete {
$class = $definition->getClass();
- $classObject = '\Pimcore\Model\DataObject\\'.ucfirst($class);
+ $classObject = '\Pimcore\Model\DataObject\\' . ucfirst($class);
$classDefinition = ClassDefinition::getByName($class);
if (!$classDefinition instanceof ClassDefinition) {
diff --git a/src/DataDefinitionsBundle/Importer/ImporterInterface.php b/src/DataDefinitionsBundle/Importer/ImporterInterface.php
index 2c031826..3a72129f 100644
--- a/src/DataDefinitionsBundle/Importer/ImporterInterface.php
+++ b/src/DataDefinitionsBundle/Importer/ImporterInterface.php
@@ -1,19 +1,18 @@
getConfiguration()['path'].'/'.$context->getValue();
+ $assetFullPath = $context->getConfiguration()['path'] . '/' . $context->getValue();
return Asset::getByPath($assetFullPath);
}
diff --git a/src/DataDefinitionsBundle/Interpreter/AssetUrlInterpreter.php b/src/DataDefinitionsBundle/Interpreter/AssetUrlInterpreter.php
index bbe82c28..e7a0f15b 100644
--- a/src/DataDefinitionsBundle/Interpreter/AssetUrlInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/AssetUrlInterpreter.php
@@ -1,36 +1,38 @@
httpClient = $httpClient;
$this->requestFactory = $requestFactory;
@@ -41,7 +43,7 @@ public function interpret(InterpreterContextInterface $context): mixed
$path = $context->getConfiguration()['path'];
$url = $context->getValue();
- if (filter_var($url, FILTER_VALIDATE_URL) === false) {
+ if (filter_var($url, \FILTER_VALIDATE_URL) === false) {
throw new \InvalidArgumentException(sprintf('Provided asset URL value %1$s is not a valid URL', $url));
}
$parent = Asset\Service::createFolderByPath($path);
@@ -74,7 +76,7 @@ public function interpret(InterpreterContextInterface $context): mixed
$save = false;
$currentUrl = $asset->getMetadata(self::METADATA_ORIGIN_URL) ?? '';
if (strpos($currentUrl, $url) === false) {
- $url = $currentUrl ? $currentUrl .'|'. $url : $url;
+ $url = $currentUrl ? $currentUrl . '|' . $url : $url;
$asset->addMetadata(self::METADATA_ORIGIN_URL, 'input', $url);
$save = true;
}
@@ -110,11 +112,11 @@ private function getFileName(string $url, bool $useContentDisposition = false):
$headers = $response->getHeaders();
if (
- isset($headers["Content-Disposition"]) &&
+ isset($headers['Content-Disposition']) &&
preg_match(
'/^.*?filename=(?[^\s]+|\x22[^\x22]+\x22)\x3B?.*$/m',
- current($headers["Content-Disposition"]),
- $match
+ current($headers['Content-Disposition']),
+ $match,
)
) {
$filename = trim($match['f'], ' ";');
@@ -135,14 +137,14 @@ protected function getFileContents(string $value): string
$request = $this->requestFactory->createRequest('GET', $value);
$response = $this->httpClient->sendRequest($request);
} catch (\Psr\Http\Client\ClientExceptionInterface $ex) {
- throw new \RuntimeException('Unable to download asset from URL '.$value);
+ throw new \RuntimeException('Unable to download asset from URL ' . $value);
}
if ($response->getStatusCode() === 200) {
- return (string)$response->getBody();
+ return (string) $response->getBody();
}
- throw new \RuntimeException('Unable to download asset from URL '.$value);
+ throw new \RuntimeException('Unable to download asset from URL ' . $value);
}
private function deduplicateAssetByUrl(string $value): ?Asset
@@ -161,11 +163,11 @@ private function deduplicateAsset(string $name, string $value, bool $fuzzy = fal
$listing->onCreateQueryBuilder(
function (QueryBuilder $select) {
$select->join('assets', 'assets_metadata', 'am', 'id = am.cid');
- }
+ },
);
$listing->addConditionParam('am.name = ?', $name);
if ($fuzzy) {
- $listing->addConditionParam('am.data LIKE ?', '%'. $value .'%');
+ $listing->addConditionParam('am.data LIKE ?', '%' . $value . '%');
} else {
$listing->addConditionParam('am.data = ?', $value);
}
diff --git a/src/DataDefinitionsBundle/Interpreter/AssetsUrlInterpreter.php b/src/DataDefinitionsBundle/Interpreter/AssetsUrlInterpreter.php
index 1901135b..73b7a18a 100644
--- a/src/DataDefinitionsBundle/Interpreter/AssetsUrlInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/AssetsUrlInterpreter.php
@@ -1,19 +1,18 @@
getValue() as $item) {
+ foreach ((array) $context->getValue() as $item) {
$childContext = new InterpreterContext(
$context->getDefinition(),
$context->getParams(),
@@ -33,7 +32,7 @@ public function interpret(InterpreterContextInterface $context): mixed
$context->getDataSet(),
$context->getObject(),
$item,
- $context->getMapping()
+ $context->getMapping(),
);
$asset = parent::interpret($childContext);
diff --git a/src/DataDefinitionsBundle/Interpreter/CarbonInterpreter.php b/src/DataDefinitionsBundle/Interpreter/CarbonInterpreter.php
index 0bdc992d..d91b5eda 100644
--- a/src/DataDefinitionsBundle/Interpreter/CarbonInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/CarbonInterpreter.php
@@ -1,19 +1,18 @@
getValue())) {
- if ($context->getValue() === "") {
+ if ($context->getValue() === '') {
return null;
}
- return filter_var(strtolower($context->getValue()), FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE);
+ return filter_var(strtolower($context->getValue()), \FILTER_VALIDATE_BOOLEAN, \FILTER_NULL_ON_FAILURE);
}
- return ((bool)$context->getValue());
+ return (bool) $context->getValue();
}
}
diff --git a/src/DataDefinitionsBundle/Interpreter/ConditionalInterpreter.php b/src/DataDefinitionsBundle/Interpreter/ConditionalInterpreter.php
index 9f944c9d..248dcc19 100644
--- a/src/DataDefinitionsBundle/Interpreter/ConditionalInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/ConditionalInterpreter.php
@@ -1,26 +1,25 @@
getDataSet(),
$context->getObject(),
$context->getValue(),
- $context->getMapping()
+ $context->getMapping(),
);
return $interpreterObject->interpret($newContext);
diff --git a/src/DataDefinitionsBundle/Interpreter/CoreShop/CurrencyInterpreter.php b/src/DataDefinitionsBundle/Interpreter/CoreShop/CurrencyInterpreter.php
index 75ce721e..1f96b004 100644
--- a/src/DataDefinitionsBundle/Interpreter/CoreShop/CurrencyInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/CoreShop/CurrencyInterpreter.php
@@ -1,19 +1,18 @@
currencyRepository = $currencyRepository;
}
@@ -34,5 +34,3 @@ public function interpret(InterpreterContextInterface $context): mixed
return $this->currencyRepository->getByCode($context->getValue());
}
}
-
-
diff --git a/src/DataDefinitionsBundle/Interpreter/CoreShop/MoneyInterpreter.php b/src/DataDefinitionsBundle/Interpreter/CoreShop/MoneyInterpreter.php
index 54bf90b3..9fd54bce 100644
--- a/src/DataDefinitionsBundle/Interpreter/CoreShop/MoneyInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/CoreShop/MoneyInterpreter.php
@@ -1,19 +1,18 @@
currencyRepository = $currencyRepository;
}
public function interpret(InterpreterContextInterface $context): mixed
{
- $value = $this->getValue((string)$context->getValue(), $context);
- $currency = $this->resolveCurrency((string)$value, $context);
+ $value = $this->getValue((string) $context->getValue(), $context);
+ $currency = $this->resolveCurrency((string) $value, $context);
if (null === $currency) {
return null;
@@ -47,26 +47,26 @@ private function getValue(string $value, InterpreterContextInterface $context):
{
$inputIsFloat = $context->getConfiguration()['isFloat'];
- $value = preg_replace("/[^0-9,.]+/", "", $value);
+ $value = preg_replace('/[^0-9,.]+/', '', $value);
if (\is_string($value)) {
$value = str_replace(',', '.', $value);
- $value = (float)$value;
+ $value = (float) $value;
}
if ($inputIsFloat) {
- $value = (int)round(round($value, 2) * 100, 0);
+ $value = (int) round(round($value, 2) * 100, 0);
}
- return (int)$value;
+ return (int) $value;
}
- private function resolveCurrency(string $value, InterpreterContextInterface$context): ?CurrencyInterface
+ private function resolveCurrency(string $value, InterpreterContextInterface $context): ?CurrencyInterface
{
$currency = null;
if (preg_match('/^\pL+$/u', $value)) {
- $currencyCode = preg_replace("/[^a-zA-Z]+/", "", $value);
+ $currencyCode = preg_replace('/[^a-zA-Z]+/', '', $value);
$currency = $this->currencyRepository->getByCode($currencyCode);
}
diff --git a/src/DataDefinitionsBundle/Interpreter/CoreShop/PriceInterpreter.php b/src/DataDefinitionsBundle/Interpreter/CoreShop/PriceInterpreter.php
index 6613918e..5b67d40d 100644
--- a/src/DataDefinitionsBundle/Interpreter/CoreShop/PriceInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/CoreShop/PriceInterpreter.php
@@ -1,19 +1,18 @@
getConfiguration()['stores'];
}
}
-
-
diff --git a/src/DataDefinitionsBundle/Interpreter/DefaultValueInterpreter.php b/src/DataDefinitionsBundle/Interpreter/DefaultValueInterpreter.php
index 5ecc3356..f7bc9000 100644
--- a/src/DataDefinitionsBundle/Interpreter/DefaultValueInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/DefaultValueInterpreter.php
@@ -1,19 +1,18 @@
definitionRepository->find($context->getConfiguration()['definition']);
if (!$subDefinition instanceof ImportDefinitionInterface) {
diff --git a/src/DataDefinitionsBundle/Interpreter/DoNotSetOnEmptyInterpreter.php b/src/DataDefinitionsBundle/Interpreter/DoNotSetOnEmptyInterpreter.php
index 22770e61..610289dd 100644
--- a/src/DataDefinitionsBundle/Interpreter/DoNotSetOnEmptyInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/DoNotSetOnEmptyInterpreter.php
@@ -1,19 +1,18 @@
getValue() === "" || $context->getValue() === null) {
+ if ($context->getValue() === '' || $context->getValue() === null) {
throw new DoNotSetException();
}
diff --git a/src/DataDefinitionsBundle/Interpreter/ExpressionInterpreter.php b/src/DataDefinitionsBundle/Interpreter/ExpressionInterpreter.php
index a7a610f0..1b142b3d 100644
--- a/src/DataDefinitionsBundle/Interpreter/ExpressionInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/ExpressionInterpreter.php
@@ -1,39 +1,42 @@
expressionLanguage = $expressionLanguage;
$this->container = $container;
}
- public function interpret(InterpreterContextInterface $context): mixed {
+ public function interpret(InterpreterContextInterface $context): mixed
+ {
$expression = $context->getConfiguration()['expression'];
try {
@@ -54,7 +57,7 @@ public function interpret(InterpreterContextInterface $context): mixed {
$context->getMapping(),
$context->getParams(),
$context->getValue(),
- $exception
+ $exception,
);
}
}
diff --git a/src/DataDefinitionsBundle/Interpreter/ExternalImageInterpreter.php b/src/DataDefinitionsBundle/Interpreter/ExternalImageInterpreter.php
index 2c008782..2a7777e7 100644
--- a/src/DataDefinitionsBundle/Interpreter/ExternalImageInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/ExternalImageInterpreter.php
@@ -1,39 +1,38 @@
getDefinition() instanceof ExportDefinitionInterface) && $context->getValue(
- ) instanceof ExternalImage) {
+ ) instanceof ExternalImage) {
return $context->getValue()->getUrl();
}
if (($context->getDefinition() instanceof ImportDefinitionInterface) && filter_var(
- $context->getValue(),
- FILTER_VALIDATE_URL
- )) {
+ $context->getValue(),
+ \FILTER_VALIDATE_URL,
+ )) {
return new ExternalImage($context->getValue());
}
diff --git a/src/DataDefinitionsBundle/Interpreter/HrefInterpreter.php b/src/DataDefinitionsBundle/Interpreter/HrefInterpreter.php
index e91f7e03..88ddcb45 100644
--- a/src/DataDefinitionsBundle/Interpreter/HrefInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/HrefInterpreter.php
@@ -1,25 +1,24 @@
ruleValidationProcessor = $ruleValidationProcessor;
$this->ruleProcessor = $ruleProcessor;
@@ -81,13 +81,13 @@ public function interpret(InterpreterContextInterface $context): mixed
$context->getDefinition(),
$context->getObject(),
$rule,
- $params
+ $params,
)) {
$value = $this->ruleProcessor->applyRule(
$rule,
$context->getObject(),
$value,
- $params
+ $params,
);
}
}
diff --git a/src/DataDefinitionsBundle/Interpreter/InterpreterInterface.php b/src/DataDefinitionsBundle/Interpreter/InterpreterInterface.php
index 3cb8be1c..92ee8fdc 100644
--- a/src/DataDefinitionsBundle/Interpreter/InterpreterInterface.php
+++ b/src/DataDefinitionsBundle/Interpreter/InterpreterInterface.php
@@ -1,19 +1,18 @@
getDataSet(),
$context->getObject(),
$val,
- $context->getMapping()
+ $context->getMapping(),
);
$result[] = $interpreterObject->interpret($context);
diff --git a/src/DataDefinitionsBundle/Interpreter/LinkInterpreter.php b/src/DataDefinitionsBundle/Interpreter/LinkInterpreter.php
index 3db1a3cd..78429009 100644
--- a/src/DataDefinitionsBundle/Interpreter/LinkInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/LinkInterpreter.php
@@ -1,26 +1,25 @@
getDefinition() instanceof ImportDefinitionInterface)) {
$link = new Link();
- if (filter_var($context->getValue(), FILTER_VALIDATE_URL)) {
+ if (filter_var($context->getValue(), \FILTER_VALIDATE_URL)) {
$link->setDirect($context->getValue());
}
diff --git a/src/DataDefinitionsBundle/Interpreter/MappingInterpreter.php b/src/DataDefinitionsBundle/Interpreter/MappingInterpreter.php
index 27492984..8347df2b 100644
--- a/src/DataDefinitionsBundle/Interpreter/MappingInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/MappingInterpreter.php
@@ -1,19 +1,18 @@
getConfiguration()['class'];
+ $class = '\\Pimcore\\Model\\DataObject\\Data\\' . $context->getConfiguration()['class'];
$fieldname = $context->getMapping()->getToColumn();
$metadata = $context->getConfiguration()['metadata'];
- $metadata = json_decode($metadata, true, 512, JSON_THROW_ON_ERROR);
+ $metadata = json_decode($metadata, true, 512, \JSON_THROW_ON_ERROR);
if (!is_array($metadata)) {
$metadata = [];
}
@@ -36,7 +35,7 @@ public function interpret(InterpreterContextInterface $context): mixed
/** @var ElementMetadata|ObjectMetadata $elementMetadata */
$elementMetadata = new $class($fieldname, array_keys($metadata), $context->getValue());
foreach ($metadata as $metadataKey => $metadataValue) {
- $setter = 'set'.ucfirst($metadataKey);
+ $setter = 'set' . ucfirst($metadataKey);
$elementMetadata->$setter($metadataValue);
}
diff --git a/src/DataDefinitionsBundle/Interpreter/MultiHrefInterpreter.php b/src/DataDefinitionsBundle/Interpreter/MultiHrefInterpreter.php
index 9e064267..892af441 100644
--- a/src/DataDefinitionsBundle/Interpreter/MultiHrefInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/MultiHrefInterpreter.php
@@ -1,24 +1,23 @@
getConfiguration()['class'];
- $class = 'Pimcore\Model\DataObject\\'.ucfirst($objectClass);
+ $class = 'Pimcore\Model\DataObject\\' . ucfirst($objectClass);
if (Tool::classExists($class)) {
$class = new $class();
diff --git a/src/DataDefinitionsBundle/Interpreter/NestedInterpreter.php b/src/DataDefinitionsBundle/Interpreter/NestedInterpreter.php
index cf097073..c3735e19 100644
--- a/src/DataDefinitionsBundle/Interpreter/NestedInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/NestedInterpreter.php
@@ -1,31 +1,30 @@
getDataSet(),
$context->getObject(),
$value,
- $context->getMapping()
+ $context->getMapping(),
);
$value = $interpreterObject->interpret($newContext);
diff --git a/src/DataDefinitionsBundle/Interpreter/ObjectResolverInterpreter.php b/src/DataDefinitionsBundle/Interpreter/ObjectResolverInterpreter.php
index cac3b1a6..4261dd4e 100644
--- a/src/DataDefinitionsBundle/Interpreter/ObjectResolverInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/ObjectResolverInterpreter.php
@@ -1,23 +1,22 @@
getConfiguration()['class']);
- $lookup = 'getBy'.ucfirst($context->getConfiguration()['field']);
+ $class = 'Pimcore\Model\DataObject\\' . ucfirst($context->getConfiguration()['class']);
+ $lookup = 'getBy' . ucfirst($context->getConfiguration()['field']);
/**
* @var Listing $listing
diff --git a/src/DataDefinitionsBundle/Interpreter/QuantityValueInterpreter.php b/src/DataDefinitionsBundle/Interpreter/QuantityValueInterpreter.php
index 4ba6eb9e..6230d0a0 100644
--- a/src/DataDefinitionsBundle/Interpreter/QuantityValueInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/QuantityValueInterpreter.php
@@ -1,23 +1,22 @@
twig = $twig;
}
diff --git a/src/DataDefinitionsBundle/Interpreter/TypeCastingInterpreter.php b/src/DataDefinitionsBundle/Interpreter/TypeCastingInterpreter.php
index a39cbc7b..7cc1c225 100644
--- a/src/DataDefinitionsBundle/Interpreter/TypeCastingInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/TypeCastingInterpreter.php
@@ -1,29 +1,31 @@
getValue();
+ return (int) $context->getValue();
case static::TYPE_FLOAT:
- return (float)$context->getValue();
+ return (float) $context->getValue();
case static::TYPE_STRING:
- return (string)$context->getValue();
+ return (string) $context->getValue();
case static::TYPE_BOOLEAN:
- return (boolean)$context->getValue();
+ return (bool) $context->getValue();
}
throw new InvalidArgumentException(sprintf('Not valid type cast given, given %s', $type));
diff --git a/src/DataDefinitionsBundle/Loader/LoaderInterface.php b/src/DataDefinitionsBundle/Loader/LoaderInterface.php
index 96d4d3ee..f392b5a4 100644
--- a/src/DataDefinitionsBundle/Loader/LoaderInterface.php
+++ b/src/DataDefinitionsBundle/Loader/LoaderInterface.php
@@ -1,23 +1,22 @@
getClass());
- $classList = '\Pimcore\Model\DataObject\\'.ucfirst($context->getClass()).'\Listing';
+ $classObject = '\Pimcore\Model\DataObject\\' . ucfirst($context->getClass());
+ $classList = '\Pimcore\Model\DataObject\\' . ucfirst($context->getClass()) . '\Listing';
$list = new $classList();
@@ -42,7 +41,7 @@ public function load(LoaderContextInterface $context): ?Concrete
$conditionValues = [];
foreach ($mapping as $map) {
if ($map->getPrimaryIdentifier()) {
- $condition[] = '`'.$map->getToColumn().'` = ?';
+ $condition[] = '`' . $map->getToColumn() . '` = ?';
$conditionValues[] = $context->getDataRow()[$map->getFromColumn()];
}
}
diff --git a/src/DataDefinitionsBundle/Messenger/ImportRowMessage.php b/src/DataDefinitionsBundle/Messenger/ImportRowMessage.php
index fc0f6b19..c076a0d1 100644
--- a/src/DataDefinitionsBundle/Messenger/ImportRowMessage.php
+++ b/src/DataDefinitionsBundle/Messenger/ImportRowMessage.php
@@ -1,29 +1,33 @@
definitionId = $definitionId;
$this->data = $data;
$this->params = $params;
diff --git a/src/DataDefinitionsBundle/Messenger/ImportRowMessageHandler.php b/src/DataDefinitionsBundle/Messenger/ImportRowMessageHandler.php
index f50e51b0..38001010 100644
--- a/src/DataDefinitionsBundle/Messenger/ImportRowMessageHandler.php
+++ b/src/DataDefinitionsBundle/Messenger/ImportRowMessageHandler.php
@@ -1,19 +1,18 @@
identifier;
@@ -36,9 +32,6 @@ public function setIdentifier($identifier): void
$this->identifier = $identifier;
}
- /**
- * @param array $values
- */
public function setValues(array $values): void
{
foreach ($values as $key => $value) {
diff --git a/src/DataDefinitionsBundle/Model/AbstractDataDefinition.php b/src/DataDefinitionsBundle/Model/AbstractDataDefinition.php
index 5c5334fd..bc33f31e 100644
--- a/src/DataDefinitionsBundle/Model/AbstractDataDefinition.php
+++ b/src/DataDefinitionsBundle/Model/AbstractDataDefinition.php
@@ -1,19 +1,18 @@
$value) {
@@ -57,7 +53,7 @@ public function setValues(array $values)
}
/**
- * @return null|string
+ * @return string|null
*/
public function getToColumn()
{
@@ -73,7 +69,7 @@ public function setToColumn($toColumn)
}
/**
- * @return null|string
+ * @return string|null
*/
public function getFromColumn()
{
@@ -89,7 +85,7 @@ public function setFromColumn($fromColumn)
}
/**
- * @return null|string
+ * @return string|null
*/
public function getInterpreter()
{
diff --git a/src/DataDefinitionsBundle/Model/DataDefinitionInterface.php b/src/DataDefinitionsBundle/Model/DataDefinitionInterface.php
index 439dfaaf..f9981972 100644
--- a/src/DataDefinitionsBundle/Model/DataDefinitionInterface.php
+++ b/src/DataDefinitionsBundle/Model/DataDefinitionInterface.php
@@ -1,26 +1,24 @@
id = (int)$id;
+ $this->id = (int) $id;
}
public function setName($name)
@@ -69,17 +68,11 @@ public function setName($name)
$this->name = $name;
}
- /**
- * @param bool $enableInheritance
- */
public function setEnableInheritance(bool $enableInheritance): void
{
$this->enableInheritance = $enableInheritance;
}
- /**
- * @return bool
- */
public function isEnableInheritance(): bool
{
return $this->enableInheritance;
@@ -105,17 +98,11 @@ public function setFetcherConfig($fetcherConfig)
$this->fetcherConfig = $fetcherConfig;
}
- /**
- * @param bool $fetchUnpublushed
- */
public function setFetchUnpublished(bool $fetchUnpublushed): void
{
$this->fetchUnpublished = $fetchUnpublushed;
}
- /**
- * @return bool
- */
public function isFetchUnpublished(): bool
{
return $this->fetchUnpublished;
diff --git a/src/DataDefinitionsBundle/Model/ExportDefinition/Dao.php b/src/DataDefinitionsBundle/Model/ExportDefinition/Dao.php
index 849e7d59..4f1ff5b7 100644
--- a/src/DataDefinitionsBundle/Model/ExportDefinition/Dao.php
+++ b/src/DataDefinitionsBundle/Model/ExportDefinition/Dao.php
@@ -1,26 +1,25 @@
$value) {
if ($key === 'mapping') {
- $maps = array();
+ $maps = [];
foreach ($this->model->getMapping() as $map) {
if (\is_array($map)) {
@@ -79,7 +78,7 @@ public function getById(string $id)
} else {
throw new Model\Exception\NotFoundException(sprintf(
'Export Definition with ID "%s" does not exist.',
- $id
+ $id,
));
}
}
@@ -87,17 +86,18 @@ public function getById(string $id)
public function getByName(string $name): void
{
foreach ($this->loadIdList() as $id) {
- $definition = ExportDefinition::getById((int)$id);
+ $definition = ExportDefinition::getById((int) $id);
if ($definition->getName() === $name) {
$this->getById((string) $id);
+
return;
}
}
throw new Model\Exception\NotFoundException(sprintf(
'Export Definition with Name "%s" does not exist.',
- $name
+ $name,
));
}
@@ -148,7 +148,7 @@ public function save()
}
} elseif ($key === 'mapping') {
if ($value) {
- $data[$key] = array();
+ $data[$key] = [];
if (\is_array($value)) {
foreach ($value as $map) {
@@ -161,7 +161,7 @@ public function save()
}
}
}
- $this->saveData((string)$this->model->getId(), $data);
+ $this->saveData((string) $this->model->getId(), $data);
}
protected function prepareDataStructureForYaml(string $id, mixed $data): mixed
@@ -177,10 +177,11 @@ protected function prepareDataStructureForYaml(string $id, mixed $data): mixed
/**
* Deletes object from database
+ *
* @throws Exception
*/
public function delete()
{
- $this->deleteData((string)$this->model->getId());
+ $this->deleteData((string) $this->model->getId());
}
}
diff --git a/src/DataDefinitionsBundle/Model/ExportDefinition/Listing.php b/src/DataDefinitionsBundle/Model/ExportDefinition/Listing.php
index 39edcfd1..3af44d8e 100644
--- a/src/DataDefinitionsBundle/Model/ExportDefinition/Listing.php
+++ b/src/DataDefinitionsBundle/Model/ExportDefinition/Listing.php
@@ -1,28 +1,27 @@
loadIdList() as $id) {
- $definitions[] = ExportDefinition::getById((int)$id);
+ $definitions[] = ExportDefinition::getById((int) $id);
}
if ($this->model->getFilter()) {
diff --git a/src/DataDefinitionsBundle/Model/ExportDefinitionInterface.php b/src/DataDefinitionsBundle/Model/ExportDefinitionInterface.php
index a5110b6d..826604ae 100644
--- a/src/DataDefinitionsBundle/Model/ExportDefinitionInterface.php
+++ b/src/DataDefinitionsBundle/Model/ExportDefinitionInterface.php
@@ -1,31 +1,24 @@
group;
}
- /**
- * @param string $group
- */
public function setGroup(string $group)
{
$this->group = $group;
diff --git a/src/DataDefinitionsBundle/Model/ExportMapping/ToColumn.php b/src/DataDefinitionsBundle/Model/ExportMapping/ToColumn.php
index 1b18caad..ae843857 100644
--- a/src/DataDefinitionsBundle/Model/ExportMapping/ToColumn.php
+++ b/src/DataDefinitionsBundle/Model/ExportMapping/ToColumn.php
@@ -1,24 +1,22 @@
= $maxNumber) {
- $maxNumber = (int)$id + 1;
+ if ((int) $id >= $maxNumber) {
+ $maxNumber = (int) $id + 1;
}
}
return $maxNumber;
}
-
}
diff --git a/src/DataDefinitionsBundle/Model/ImportDefinition.php b/src/DataDefinitionsBundle/Model/ImportDefinition.php
index 2d5184b1..7fb787a2 100644
--- a/src/DataDefinitionsBundle/Model/ImportDefinition.php
+++ b/src/DataDefinitionsBundle/Model/ImportDefinition.php
@@ -1,19 +1,18 @@
getDao();
- $dao->getById((string)$id);
+ $dao->getById((string) $id);
return $definitionEntry;
}
@@ -106,7 +105,7 @@ public static function getByName(string $name): self
public function setId($id)
{
- $this->id = (int)$id;
+ $this->id = (int) $id;
}
public function setName($name)
diff --git a/src/DataDefinitionsBundle/Model/ImportDefinition/Dao.php b/src/DataDefinitionsBundle/Model/ImportDefinition/Dao.php
index aaece3b8..44536695 100644
--- a/src/DataDefinitionsBundle/Model/ImportDefinition/Dao.php
+++ b/src/DataDefinitionsBundle/Model/ImportDefinition/Dao.php
@@ -1,26 +1,25 @@
$value) {
if ($key === 'mapping') {
- $maps = array();
+ $maps = [];
foreach ($this->model->getMapping() as $map) {
if (\is_array($map)) {
@@ -86,7 +85,7 @@ public function getById(string $id)
} else {
throw new Model\Exception\NotFoundException(sprintf(
'Import Definition with ID "%s" does not exist.',
- $id
+ $id,
));
}
}
@@ -94,17 +93,18 @@ public function getById(string $id)
public function getByName(string $name): void
{
foreach ($this->loadIdList() as $id) {
- $definition = ImportDefinition::getById((int)$id);
+ $definition = ImportDefinition::getById((int) $id);
if ($definition->getName() === $name) {
$this->getById((string) $id);
+
return;
}
}
throw new Model\Exception\NotFoundException(sprintf(
'Import Definition with Name "%s" does not exist.',
- $name
+ $name,
));
}
@@ -163,7 +163,7 @@ public function save()
}
} elseif ($key === 'mapping') {
if ($value) {
- $data[$key] = array();
+ $data[$key] = [];
if (\is_array($value)) {
foreach ($value as $map) {
@@ -177,8 +177,7 @@ public function save()
}
}
-
- $this->saveData((string)$this->model->getId(), $data);
+ $this->saveData((string) $this->model->getId(), $data);
}
protected function prepareDataStructureForYaml(string $id, mixed $data): mixed
@@ -194,10 +193,11 @@ protected function prepareDataStructureForYaml(string $id, mixed $data): mixed
/**
* Deletes object from database
+ *
* @throws Exception
*/
public function delete()
{
- $this->deleteData((string)$this->model->getId());
+ $this->deleteData((string) $this->model->getId());
}
}
diff --git a/src/DataDefinitionsBundle/Model/ImportDefinition/Listing.php b/src/DataDefinitionsBundle/Model/ImportDefinition/Listing.php
index 166d57c3..aee9024b 100644
--- a/src/DataDefinitionsBundle/Model/ImportDefinition/Listing.php
+++ b/src/DataDefinitionsBundle/Model/ImportDefinition/Listing.php
@@ -1,29 +1,27 @@
loadIdList() as $id) {
- $definitions[] = ImportDefinition::getById((int)$id);
+ $definitions[] = ImportDefinition::getById((int) $id);
}
if ($this->model->getFilter()) {
diff --git a/src/DataDefinitionsBundle/Model/ImportDefinitionInterface.php b/src/DataDefinitionsBundle/Model/ImportDefinitionInterface.php
index 12720b03..4b1e1820 100644
--- a/src/DataDefinitionsBundle/Model/ImportDefinitionInterface.php
+++ b/src/DataDefinitionsBundle/Model/ImportDefinitionInterface.php
@@ -1,19 +1,18 @@
group;
}
- /**
- * @param string $group
- */
public function setGroup(string $group)
{
$this->group = $group;
diff --git a/src/DataDefinitionsBundle/Model/Log.php b/src/DataDefinitionsBundle/Model/Log.php
index 8af5511c..ddd93989 100644
--- a/src/DataDefinitionsBundle/Model/Log.php
+++ b/src/DataDefinitionsBundle/Model/Log.php
@@ -1,29 +1,30 @@
model->setId($id);
}
- $data = $this->db->fetchAssociative('SELECT * FROM '.$this->tableName.' WHERE id = ?', [$this->model->getId()]);
+ $data = $this->db->fetchAssociative('SELECT * FROM ' . $this->tableName . ' WHERE id = ?', [$this->model->getId()]);
if (!$data['id']) {
throw new InvalidArgumentException(sprintf('Object with the ID %s does not exist', $this->model->getId()));
@@ -77,7 +77,7 @@ public function save()
$value = $this->model->$getter();
if (is_bool($value)) {
- $value = (int)$value;
+ $value = (int) $value;
}
$buffer[$k] = $value;
@@ -91,7 +91,7 @@ public function save()
}
$this->db->insert($this->tableName, $buffer);
- $this->model->setId((int)$this->db->lastInsertId());
+ $this->model->setId((int) $this->db->lastInsertId());
}
/**
diff --git a/src/DataDefinitionsBundle/Model/Log/Listing.php b/src/DataDefinitionsBundle/Model/Log/Listing.php
index 23979523..3cce2da8 100644
--- a/src/DataDefinitionsBundle/Model/Log/Listing.php
+++ b/src/DataDefinitionsBundle/Model/Log/Listing.php
@@ -1,26 +1,25 @@
loadIdList();
- $objects = array();
+ $objects = [];
foreach ($list as $o_id) {
if ($object = Log::getById($o_id)) {
$objects[] = $object;
@@ -80,46 +80,44 @@ public function getQueryBuilder(...$columns): DoctrineQueryBuilder
* Loads a list for the specified parameters, returns an array of ids.
*
* @return array
+ *
* @throws Exception
*/
public function loadIdList()
{
$queryBuilder = $this->getQueryBuilder(['id']);
$assetIds = $this->db->fetchFirstColumn(
- (string)$queryBuilder,
+ (string) $queryBuilder,
$this->model->getConditionVariables(),
- $this->model->getConditionVariableTypes()
+ $this->model->getConditionVariableTypes(),
);
return array_map('intval', $assetIds);
}
-
/**
* Get Count
*
- * @return int
* @throws Exception
*/
public function getCount(): int
{
- return (int)$this->db->fetchOne(
- 'SELECT COUNT(*) as amount FROM '.$this->getTableName().$this->getCondition().$this->getOffsetLimit(),
- [$this->model->getConditionVariables()]
+ return (int) $this->db->fetchOne(
+ 'SELECT COUNT(*) as amount FROM ' . $this->getTableName() . $this->getCondition() . $this->getOffsetLimit(),
+ [$this->model->getConditionVariables()],
);
}
/**
* Get Total Count.
*
- * @return int
* @throws Exception
*/
public function getTotalCount(): int
{
- return (int)$this->db->fetchOne(
- 'SELECT COUNT(*) as amount FROM '.$this->getTableName().$this->getCondition(),
- [$this->model->getConditionVariables()]
+ return (int) $this->db->fetchOne(
+ 'SELECT COUNT(*) as amount FROM ' . $this->getTableName() . $this->getCondition(),
+ [$this->model->getConditionVariables()],
);
}
}
diff --git a/src/DataDefinitionsBundle/Model/MappingInterface.php b/src/DataDefinitionsBundle/Model/MappingInterface.php
index 150e6729..6455f671 100644
--- a/src/DataDefinitionsBundle/Model/MappingInterface.php
+++ b/src/DataDefinitionsBundle/Model/MappingInterface.php
@@ -1,25 +1,24 @@
processFactory = $processFactory;
$this->processLogger = $processLogger;
@@ -74,9 +77,6 @@ public function getProcess(): ProcessInterface
return $this->process;
}
- /**
- * @param DefinitionEventInterface $event
- */
public function onTotalEvent(DefinitionEventInterface $event): void
{
if (null === $this->process) {
@@ -84,9 +84,9 @@ public function onTotalEvent(DefinitionEventInterface $event): void
$this->process = $this->processFactory->createProcess(
sprintf(
- static::PROCESS_NAME.' (%s): %s',
+ static::PROCESS_NAME . ' (%s): %s',
$date->formatLocalized('%A %d %B %Y'),
- $event->getDefinition()->getName()
+ $event->getDefinition()->getName(),
),
static::PROCESS_TYPE,
'Loading',
@@ -95,23 +95,19 @@ public function onTotalEvent(DefinitionEventInterface $event): void
-1,
0,
1,
- ProcessManagerBundle::STATUS_RUNNING
-
+ ProcessManagerBundle::STATUS_RUNNING,
);
$this->process->save();
- $this->processLogger->info($this->process, ImportDefinitionsReport::EVENT_TOTAL.$event->getSubject());
+ $this->processLogger->info($this->process, ImportDefinitionsReport::EVENT_TOTAL . $event->getSubject());
}
}
- /**
- * @return void
- */
public function onProgressEvent(DefinitionEventInterface $event): void
{
if ($this->process) {
$now = new \DateTimeImmutable();
- $this->lastProgressStepsCount++;
+ ++$this->lastProgressStepsCount;
if ($this->lastProgressAt instanceof \DateTimeInterface) {
$diff = $now->getTimestamp() - $this->lastProgressAt->getTimestamp();
@@ -139,13 +135,10 @@ public function onProgressEvent(DefinitionEventInterface $event): void
}
}
- /**
- * @param DefinitionEventInterface $event
- */
public function onStatusEvent(DefinitionEventInterface $event): void
{
if ($this->process) {
- $this->processLogger->info($this->process, ImportDefinitionsReport::EVENT_STATUS.$event->getSubject());
+ $this->processLogger->info($this->process, ImportDefinitionsReport::EVENT_STATUS . $event->getSubject());
$now = new \DateTimeImmutable();
if ($this->lastStatusAt instanceof \DateTimeInterface) {
@@ -165,9 +158,6 @@ public function onStatusEvent(DefinitionEventInterface $event): void
}
}
- /**
- * @param DefinitionEventInterface $event
- */
public function onFinishedEvent(DefinitionEventInterface $event): void
{
if ($this->process) {
@@ -178,13 +168,10 @@ public function onFinishedEvent(DefinitionEventInterface $event): void
$this->process->setCompleted(time());
$this->process->save();
}
- $this->processLogger->info($this->process, ImportDefinitionsReport::EVENT_FINISHED.$event->getSubject());
+ $this->processLogger->info($this->process, ImportDefinitionsReport::EVENT_FINISHED . $event->getSubject());
}
}
- /**
- * @param DefinitionEventInterface $event
- */
public function onFailureEvent(DefinitionEventInterface $event): void
{
if ($this->process) {
@@ -197,7 +184,7 @@ public function onFailureEvent(DefinitionEventInterface $event): void
$this->process->save();
if (is_string($event->getSubject())) {
- $this->processLogger->info($this->process, ImportDefinitionsReport::EVENT_STATUS_ERROR.$event->getSubject());
+ $this->processLogger->info($this->process, ImportDefinitionsReport::EVENT_STATUS_ERROR . $event->getSubject());
}
}
}
diff --git a/src/DataDefinitionsBundle/ProcessManager/ArtifactGenerationProviderInterface.php b/src/DataDefinitionsBundle/ProcessManager/ArtifactGenerationProviderInterface.php
index 3aa1f349..982fff60 100644
--- a/src/DataDefinitionsBundle/ProcessManager/ArtifactGenerationProviderInterface.php
+++ b/src/DataDefinitionsBundle/ProcessManager/ArtifactGenerationProviderInterface.php
@@ -1,30 +1,26 @@
self::EVENT_STATUS_IMPORT_NEW,
'attr' => 'new',
@@ -55,7 +63,6 @@ class ImportDefinitionsReport implements ReportInterface
],
];
-
public function generateReport(ProcessInterface $process, string $log): string
{
$result = $this->doReport($log);
@@ -75,42 +82,42 @@ public function generateReport(ProcessInterface $process, string $log): string
$status = $result['productStatus'][$iter];
if (isset($status['error'])) {
- $errors[] = 'Line '.($iter + 1).'. Error: '.$status['error'];
- $errorsCnt++;
+ $errors[] = 'Line ' . ($iter + 1) . '. Error: ' . $status['error'];
+ ++$errorsCnt;
} elseif (isset($status['ignore_filtered'])) {
- $skippedFiltered++;
+ ++$skippedFiltered;
} elseif (isset($status['ignore_new'])) {
- $skippedNew++;
+ ++$skippedNew;
} elseif (isset($status['ignore_existing'])) {
- $skippedExisting++;
+ ++$skippedExisting;
} elseif (isset($status['new'])) {
- $importedNew++;
+ ++$importedNew;
} elseif (isset($status['existing'])) {
- $importedExisting++;
+ ++$importedExisting;
}
}
}
$items = [];
- $items[] = 'Total lines processed: '.$total;
+ $items[] = 'Total lines processed: ' . $total;
if ($importedNew) {
- $items[] = 'Imported new objects: '.$importedNew;
+ $items[] = 'Imported new objects: ' . $importedNew;
}
if ($importedExisting) {
- $items[] = 'Updates: '.$importedExisting;
+ $items[] = 'Updates: ' . $importedExisting;
}
if ($skippedNew) {
- $items[] = 'Skipped new: '.$skippedNew;
+ $items[] = 'Skipped new: ' . $skippedNew;
}
if ($skippedExisting) {
- $items[] = 'Skipped existing: '.$skippedExisting;
+ $items[] = 'Skipped existing: ' . $skippedExisting;
}
if ($skippedFiltered) {
- $items[] = 'Filtered: '.$skippedFiltered;
+ $items[] = 'Filtered: ' . $skippedFiltered;
}
- $items[] = 'Errors count: '.$errorsCnt;
+ $items[] = 'Errors count: ' . $errorsCnt;
if (count($errors)) {
$items[] = 'Errors: ';
@@ -122,7 +129,7 @@ public function generateReport(ProcessInterface $process, string $log): string
protected function doReport($log)
{
- $lines = explode(PHP_EOL, $log);
+ $lines = explode(\PHP_EOL, $log);
$result = [
'currentObject' => 0,
'productStatus' => [],
@@ -135,17 +142,12 @@ protected function doReport($log)
return $result;
}
- /**
- * @param $line
- * @param $result
- */
protected function processLine($line, &$result)
{
if ($this->checkForProgress($line, $result)) {
return;
}
-
if ($this->checkForTotal($line, $result)) {
return;
}
@@ -157,11 +159,6 @@ protected function processLine($line, &$result)
$this->processChecks($line, $result);
}
- /**
- * @param $line
- * @param $result
- * @return bool
- */
protected function checkForProgress($line, &$result): bool
{
if (str_contains($line, self::EVENT_PROGRESS)) {
@@ -173,17 +170,12 @@ protected function checkForProgress($line, &$result): bool
return false;
}
- /**
- * @param $line
- * @param $result
- * @return bool
- */
protected function checkForTotal($line, &$result): bool
{
$pos = strpos($line, self::EVENT_TOTAL);
if ($pos) {
$total = substr($line, $pos + strlen(self::EVENT_TOTAL));
- $result['total'] = (int)$total;
+ $result['total'] = (int) $total;
return true;
}
@@ -191,18 +183,13 @@ protected function checkForTotal($line, &$result): bool
return false;
}
- /**
- * @param $line
- * @param $result
- * @return bool
- */
protected function checkForError($line, &$result): bool
{
$pos = strpos($line, self::EVENT_STATUS_ERROR);
if (false !== $pos) {
$result['productStatus'][$result['currentObject']]['error'] = substr(
$line,
- $pos + strlen(self::EVENT_STATUS_ERROR)
+ $pos + strlen(self::EVENT_STATUS_ERROR),
);
return true;
@@ -211,10 +198,6 @@ protected function checkForError($line, &$result): bool
return false;
}
- /**
- * @param $line
- * @param $result
- */
protected function processChecks($line, &$result): void
{
foreach (self::CHECKS as $check) {
diff --git a/src/DataDefinitionsBundle/ProcessManager/ProcessManagerExportListener.php b/src/DataDefinitionsBundle/ProcessManager/ProcessManagerExportListener.php
index d7196259..d1378ac7 100644
--- a/src/DataDefinitionsBundle/ProcessManager/ProcessManagerExportListener.php
+++ b/src/DataDefinitionsBundle/ProcessManager/ProcessManagerExportListener.php
@@ -1,29 +1,29 @@
getDefinition();
- $this->processLogger->info($this->process, ImportDefinitionsReport::EVENT_FINISHED.$event->getSubject());
+ $this->processLogger->info($this->process, ImportDefinitionsReport::EVENT_FINISHED . $event->getSubject());
$provider = $this->providerRegistry->get($definition->getProvider());
@@ -53,7 +53,7 @@ public function onFinishedEvent(DefinitionEventInterface $event): void
$artifact = $provider->generateArtifact(
$definition->getConfiguration(),
$definition,
- $event->getParams()
+ $event->getParams(),
);
if (null === $artifact) {
diff --git a/src/DataDefinitionsBundle/ProcessManager/ProcessManagerImportListener.php b/src/DataDefinitionsBundle/ProcessManager/ProcessManagerImportListener.php
index 06004d83..ad199f0d 100644
--- a/src/DataDefinitionsBundle/ProcessManager/ProcessManagerImportListener.php
+++ b/src/DataDefinitionsBundle/ProcessManager/ProcessManagerImportListener.php
@@ -1,23 +1,23 @@
0) {
// there is at least one row - we can grab columns from it
- $columns = array_keys((array)$data);
+ $columns = array_keys((array) $data);
}
foreach ($columns as $col) {
@@ -59,12 +58,10 @@ public function getData(
array $configuration,
ImportDefinitionInterface $definition,
array $params,
- FilterInterface $filter = null
+ FilterInterface $filter = null,
): ImportDataSetInterface {
$db = $this->getDb($configuration);
return new ArrayImportDataSet($db->fetchAllAssociative($configuration['query']));
}
}
-
-
diff --git a/src/DataDefinitionsBundle/Provider/ArrayImportDataSet.php b/src/DataDefinitionsBundle/Provider/ArrayImportDataSet.php
index 58084b09..d5888117 100644
--- a/src/DataDefinitionsBundle/Provider/ArrayImportDataSet.php
+++ b/src/DataDefinitionsBundle/Provider/ArrayImportDataSet.php
@@ -1,19 +1,18 @@
data = $data;
$this->iterator = new \ArrayIterator($data);
}
/**
* Return the current element
- * @link https://php.net/manual/en/iterator.current.php
+ *
+ * @see https://php.net/manual/en/iterator.current.php
+ *
* @return mixed Can return any type.
+ *
* @since 5.0.0
*/
public function current(): mixed
{
- return ($this->iterator->current());
+ return $this->iterator->current();
}
/**
* Move forward to next element
- * @link https://php.net/manual/en/iterator.next.php
- * @return void Any returned value is ignored.
+ *
+ * @see https://php.net/manual/en/iterator.next.php
* @since 5.0.0
*/
public function next(): void
@@ -53,8 +57,11 @@ public function next(): void
/**
* Return the key of the current element
- * @link https://php.net/manual/en/iterator.key.php
+ *
+ * @see https://php.net/manual/en/iterator.key.php
+ *
* @return mixed scalar on success, or null on failure.
+ *
* @since 5.0.0
*/
public function key(): mixed
@@ -64,9 +71,12 @@ public function key(): mixed
/**
* Checks if current position is valid
- * @link https://php.net/manual/en/iterator.valid.php
- * @return boolean The return value will be casted to boolean and then evaluated.
+ *
+ * @see https://php.net/manual/en/iterator.valid.php
+ *
+ * @return bool The return value will be casted to boolean and then evaluated.
* Returns true on success or false on failure.
+ *
* @since 5.0.0
*/
public function valid(): bool
@@ -76,8 +86,8 @@ public function valid(): bool
/**
* Rewind the Iterator to the first element
- * @link https://php.net/manual/en/iterator.rewind.php
- * @return void Any returned value is ignored.
+ *
+ * @see https://php.net/manual/en/iterator.rewind.php
* @since 5.0.0
*/
public function rewind(): void
@@ -87,11 +97,14 @@ public function rewind(): void
/**
* Count elements of an object
- * @link https://php.net/manual/en/countable.count.php
+ *
+ * @see https://php.net/manual/en/countable.count.php
+ *
* @return int The custom count as an integer.
*
*
* The return value is cast to an integer.
+ *
* @since 5.1.0
*/
public function count(): int
diff --git a/src/DataDefinitionsBundle/Provider/CsvProvider.php b/src/DataDefinitionsBundle/Provider/CsvProvider.php
index 2d6a3642..ea66476d 100644
--- a/src/DataDefinitionsBundle/Provider/CsvProvider.php
+++ b/src/DataDefinitionsBundle/Provider/CsvProvider.php
@@ -1,32 +1,31 @@
offset((int)$offset);
+ $stmt = $stmt->offset((int) $offset);
}
if ($limit) {
- $stmt = $stmt->limit((int)$limit);
+ $stmt = $stmt->limit((int) $limit);
}
$records = $stmt->process($csv);
@@ -151,7 +150,7 @@ public function addExportData(
array $data,
array $configuration,
ExportDefinitionInterface $definition,
- array $params
+ array $params,
): void {
$this->exportData[] = $data;
}
diff --git a/src/DataDefinitionsBundle/Provider/ExcelProvider.php b/src/DataDefinitionsBundle/Provider/ExcelProvider.php
index f5671226..afce7c8c 100644
--- a/src/DataDefinitionsBundle/Provider/ExcelProvider.php
+++ b/src/DataDefinitionsBundle/Provider/ExcelProvider.php
@@ -1,21 +1,26 @@
buildColumns(str_getcsv((string)$configuration['excelHeaders']));
+ return $this->buildColumns(str_getcsv((string) $configuration['excelHeaders']));
}
return [];
@@ -72,7 +71,7 @@ public function getData(
array $configuration,
ImportDefinitionInterface $definition,
array $params,
- FilterInterface $filter = null
+ FilterInterface $filter = null,
): ImportDataSetInterface {
$file = $this->getFile($params);
@@ -97,7 +96,7 @@ public function getData(
$rowCount = count($rowArray);
if ($rowCount < $headersCount) {
// append missing values
- $rowArray = array_pad($rowArray, (int)$headersCount, null);
+ $rowArray = array_pad($rowArray, (int) $headersCount, null);
} elseif ($rowCount >= $headersCount) {
// remove overflow
$rowArray = array_slice($rowArray, 0, $headersCount);
@@ -111,7 +110,7 @@ public function addExportData(
array $data,
array $configuration,
ExportDefinitionInterface $definition,
- array $params
+ array $params,
): void {
$headers = null;
if (!isset($this->writer)) {
@@ -122,7 +121,7 @@ public function addExportData(
foreach ($data as $key => $item) {
if (is_object($item)) {
- $data[$key] = (string)$item;
+ $data[$key] = (string) $item;
}
}
$writer->addRow(Row::fromValues(array_values($data)));
diff --git a/src/DataDefinitionsBundle/Provider/ExportProviderInterface.php b/src/DataDefinitionsBundle/Provider/ExportProviderInterface.php
index 21fc5fc1..97e9127d 100644
--- a/src/DataDefinitionsBundle/Provider/ExportProviderInterface.php
+++ b/src/DataDefinitionsBundle/Provider/ExportProviderInterface.php
@@ -1,19 +1,18 @@
iterator = $iterator;
$this->countAll = false;
$this->processor = $processor ?? static function ($current) {
- return $current;
- };
+ return $current;
+ };
}
/**
* Return the current element
- * @link https://php.net/manual/en/iterator.current.php
+ *
+ * @see https://php.net/manual/en/iterator.current.php
+ *
* @return mixed Can return any type.
+ *
* @since 5.0.0
*/
public function current(): mixed
@@ -52,8 +53,8 @@ public function current(): mixed
/**
* Move forward to next element
- * @link https://php.net/manual/en/iterator.next.php
- * @return void Any returned value is ignored.
+ *
+ * @see https://php.net/manual/en/iterator.next.php
* @since 5.0.0
*/
public function next(): void
@@ -63,8 +64,11 @@ public function next(): void
/**
* Return the key of the current element
- * @link https://php.net/manual/en/iterator.key.php
+ *
+ * @see https://php.net/manual/en/iterator.key.php
+ *
* @return mixed scalar on success, or null on failure.
+ *
* @since 5.0.0
*/
public function key(): mixed
@@ -74,9 +78,12 @@ public function key(): mixed
/**
* Checks if current position is valid
- * @link https://php.net/manual/en/iterator.valid.php
- * @return boolean The return value will be casted to boolean and then evaluated.
+ *
+ * @see https://php.net/manual/en/iterator.valid.php
+ *
+ * @return bool The return value will be casted to boolean and then evaluated.
* Returns true on success or false on failure.
+ *
* @since 5.0.0
*/
public function valid(): bool
@@ -86,8 +93,8 @@ public function valid(): bool
/**
* Rewind the Iterator to the first element
- * @link https://php.net/manual/en/iterator.rewind.php
- * @return void Any returned value is ignored.
+ *
+ * @see https://php.net/manual/en/iterator.rewind.php
* @since 5.0.0
*/
public function rewind(): void
@@ -97,11 +104,14 @@ public function rewind(): void
/**
* Count elements of an object
- * @link https://php.net/manual/en/countable.count.php
+ *
+ * @see https://php.net/manual/en/countable.count.php
+ *
* @return int The custom count as an integer.
*
*
* The return value is cast to an integer.
+ *
* @since 5.1.0
*/
public function count(): int
diff --git a/src/DataDefinitionsBundle/Provider/ImportDataSetInterface.php b/src/DataDefinitionsBundle/Provider/ImportDataSetInterface.php
index 0055479b..07fe0a19 100644
--- a/src/DataDefinitionsBundle/Provider/ImportDataSetInterface.php
+++ b/src/DataDefinitionsBundle/Provider/ImportDataSetInterface.php
@@ -1,19 +1,18 @@
getFile($params);
@@ -113,7 +111,7 @@ public function addExportData(
array $data,
array $configuration,
ExportDefinitionInterface $definition,
- array $params
+ array $params,
): void {
$this->exportData[] = $data;
}
diff --git a/src/DataDefinitionsBundle/Provider/RawProvider.php b/src/DataDefinitionsBundle/Provider/RawProvider.php
index ddda3c39..dd444a22 100644
--- a/src/DataDefinitionsBundle/Provider/RawProvider.php
+++ b/src/DataDefinitionsBundle/Provider/RawProvider.php
@@ -1,25 +1,24 @@
connection = $connection;
}
diff --git a/src/DataDefinitionsBundle/Provider/TraversableImportDataSet.php b/src/DataDefinitionsBundle/Provider/TraversableImportDataSet.php
index 8f47d812..b8168d26 100644
--- a/src/DataDefinitionsBundle/Provider/TraversableImportDataSet.php
+++ b/src/DataDefinitionsBundle/Provider/TraversableImportDataSet.php
@@ -1,47 +1,51 @@
count = iterator_count($iterator);
$this->iterator = new \IteratorIterator($iterator);
}
/**
* Return the current element
- * @link https://php.net/manual/en/iterator.current.php
+ *
+ * @see https://php.net/manual/en/iterator.current.php
+ *
* @return mixed Can return any type.
+ *
* @since 5.0.0
*/
public function current(): mixed
{
- return ($this->iterator->current());
+ return $this->iterator->current();
}
/**
* Move forward to next element
- * @link https://php.net/manual/en/iterator.next.php
- * @return void Any returned value is ignored.
+ *
+ * @see https://php.net/manual/en/iterator.next.php
* @since 5.0.0
*/
public function next(): void
@@ -51,8 +55,11 @@ public function next(): void
/**
* Return the key of the current element
- * @link https://php.net/manual/en/iterator.key.php
+ *
+ * @see https://php.net/manual/en/iterator.key.php
+ *
* @return mixed scalar on success, or null on failure.
+ *
* @since 5.0.0
*/
public function key(): mixed
@@ -62,9 +69,12 @@ public function key(): mixed
/**
* Checks if current position is valid
- * @link https://php.net/manual/en/iterator.valid.php
- * @return boolean The return value will be casted to boolean and then evaluated.
+ *
+ * @see https://php.net/manual/en/iterator.valid.php
+ *
+ * @return bool The return value will be casted to boolean and then evaluated.
* Returns true on success or false on failure.
+ *
* @since 5.0.0
*/
public function valid(): bool
@@ -74,8 +84,8 @@ public function valid(): bool
/**
* Rewind the Iterator to the first element
- * @link https://php.net/manual/en/iterator.rewind.php
- * @return void Any returned value is ignored.
+ *
+ * @see https://php.net/manual/en/iterator.rewind.php
* @since 5.0.0
*/
public function rewind(): void
@@ -85,7 +95,6 @@ public function rewind(): void
/**
* Return the number of elements in the Iterator
- * @return int
*/
public function count(): int
{
diff --git a/src/DataDefinitionsBundle/Provider/XmlProvider.php b/src/DataDefinitionsBundle/Provider/XmlProvider.php
index 060e02e4..2a49c4cc 100755
--- a/src/DataDefinitionsBundle/Provider/XmlProvider.php
+++ b/src/DataDefinitionsBundle/Provider/XmlProvider.php
@@ -1,46 +1,47 @@
xpath($xpath);
$json = json_encode($xml);
@@ -49,7 +50,7 @@ protected function convertXmlToArray($xml, $xpath)
foreach ($array as &$arrayEntry) {
if (array_key_exists('@attributes', $arrayEntry)) {
foreach ($arrayEntry['@attributes'] as $key => $value) {
- $arrayEntry['attr_'.$key] = $value;
+ $arrayEntry['attr_' . $key] = $value;
}
}
}
@@ -89,7 +90,7 @@ public function getData(
array $configuration,
ImportDefinitionInterface $definition,
array $params,
- FilterInterface $filter = null
+ FilterInterface $filter = null,
): ImportDataSetInterface {
$file = $this->getFile($params);
$xml = file_get_contents($file);
@@ -101,7 +102,7 @@ public function addExportData(
array $data,
array $configuration,
ExportDefinitionInterface $definition,
- array $params
+ array $params,
): void {
$writer = $this->getXMLWriter();
@@ -109,7 +110,7 @@ public function addExportData(
$this->serializeCollection($writer, $data);
$writer->endElement();
- $this->exportCounter++;
+ ++$this->exportCounter;
if ($this->exportCounter >= 50) {
$this->flush($writer);
$this->exportCounter = 0;
@@ -135,7 +136,7 @@ public function exportData(array $configuration, ExportDefinitionInterface $defi
throw new RuntimeException(sprintf('Passed XSLT file "%1$s" not found', $path));
}
- $extension = pathinfo($configuration['xsltPath'], PATHINFO_EXTENSION);
+ $extension = pathinfo($configuration['xsltPath'], \PATHINFO_EXTENSION);
$workingPath = File::getLocalTempFilePath($extension);
file_put_contents($workingPath, $storage->read($path));
@@ -202,7 +203,7 @@ private function getExportPath(): string
private function flush(XMLWriter $writer): void
{
- file_put_contents($this->getExportPath(), $writer->flush(true), FILE_APPEND);
+ file_put_contents($this->getExportPath(), $writer->flush(true), \FILE_APPEND);
}
private function serialize(XMLWriter $writer, ?string $name, $data, ?int $key = null): void
@@ -213,13 +214,13 @@ private function serialize(XMLWriter $writer, ?string $name, $data, ?int $key =
$writer->writeAttribute('name', $name);
}
if (null !== $key) {
- $writer->writeAttribute('key', (string)$key);
+ $writer->writeAttribute('key', (string) $key);
}
if (is_string($data)) {
$writer->writeCdata($data);
} else {
// TODO: should be more elaborate/exact for "non-string" scalar values
- $writer->text((string)$data);
+ $writer->text((string) $data);
}
$writer->endElement();
} else {
@@ -229,20 +230,20 @@ private function serialize(XMLWriter $writer, ?string $name, $data, ?int $key =
$writer->writeAttribute('name', $name);
}
if (null !== $key) {
- $writer->writeAttribute('key', (string)$key);
+ $writer->writeAttribute('key', (string) $key);
}
$this->serializeCollection($writer, $data);
$writer->endElement();
} else {
- if ((string)$data) {
+ if ((string) $data) {
$writer->startElement('property');
if (null !== $name) {
$writer->writeAttribute('name', $name);
}
if (null !== $key) {
- $writer->writeAttribute('key', (string)$key);
+ $writer->writeAttribute('key', (string) $key);
}
- $writer->writeCdata((string)$data);
+ $writer->writeCdata((string) $data);
$writer->endElement();
}
}
diff --git a/src/DataDefinitionsBundle/Repository/DefinitionRepository.php b/src/DataDefinitionsBundle/Repository/DefinitionRepository.php
index 431f851c..e20dbf8e 100644
--- a/src/DataDefinitionsBundle/Repository/DefinitionRepository.php
+++ b/src/DataDefinitionsBundle/Repository/DefinitionRepository.php
@@ -1,19 +1,18 @@
expressionLanguage = $expressionLanguage;
$this->container = $container;
}
@@ -37,13 +39,13 @@ public function apply(
Concrete $concrete,
$value,
array $configuration,
- array $params = []
+ array $params = [],
) {
$expression = $configuration['expression'];
return $this->expressionLanguage->evaluate(
$expression,
- array_merge($params, ['container' => $this->container])
+ array_merge($params, ['container' => $this->container]),
);
}
}
diff --git a/src/DataDefinitionsBundle/Rules/Action/ImportRuleProcessorInterface.php b/src/DataDefinitionsBundle/Rules/Action/ImportRuleProcessorInterface.php
index 842b9b2f..f8c668e3 100644
--- a/src/DataDefinitionsBundle/Rules/Action/ImportRuleProcessorInterface.php
+++ b/src/DataDefinitionsBundle/Rules/Action/ImportRuleProcessorInterface.php
@@ -1,23 +1,22 @@
expressionLanguage = $expressionLanguage;
$this->container = $container;
}
@@ -36,13 +38,13 @@ public function isImportRuleValid(
ImportRuleInterface $subject,
Concrete $concrete,
array $params,
- array $configuration
+ array $configuration,
): bool {
$expression = $configuration['expression'];
return $this->expressionLanguage->evaluate(
$expression,
- array_merge($params, ['container' => $this->container])
+ array_merge($params, ['container' => $this->container]),
);
}
}
diff --git a/src/DataDefinitionsBundle/Rules/Condition/ImportRuleConditionCheckerInterface.php b/src/DataDefinitionsBundle/Rules/Condition/ImportRuleConditionCheckerInterface.php
index b97929f3..2b88b967 100644
--- a/src/DataDefinitionsBundle/Rules/Condition/ImportRuleConditionCheckerInterface.php
+++ b/src/DataDefinitionsBundle/Rules/Condition/ImportRuleConditionCheckerInterface.php
@@ -1,24 +1,23 @@
add('expression', TextType::class);
+ ->add('expression', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/Action/ObjectType.php b/src/DataDefinitionsBundle/Rules/Form/Type/Action/ObjectType.php
index 6954f963..afa7166d 100644
--- a/src/DataDefinitionsBundle/Rules/Form/Type/Action/ObjectType.php
+++ b/src/DataDefinitionsBundle/Rules/Form/Type/Action/ObjectType.php
@@ -1,19 +1,18 @@
add('object', TextType::class);
+ ->add('object', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/Condition/ExpressionConditionType.php b/src/DataDefinitionsBundle/Rules/Form/Type/Condition/ExpressionConditionType.php
index d0cbae85..6767ec9f 100644
--- a/src/DataDefinitionsBundle/Rules/Form/Type/Condition/ExpressionConditionType.php
+++ b/src/DataDefinitionsBundle/Rules/Form/Type/Condition/ExpressionConditionType.php
@@ -1,19 +1,18 @@
add('expression', TextType::class);
+ ->add('expression', TextType::class)
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionChoiceType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionChoiceType.php
index 402aa660..e7b20f23 100755
--- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionChoiceType.php
+++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionChoiceType.php
@@ -1,24 +1,22 @@
[
'data-form-collection' => 'update',
],
- ]);
+ ])
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionChoiceType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionChoiceType.php
index 36681d03..1367b8f2 100755
--- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionChoiceType.php
+++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionChoiceType.php
@@ -1,24 +1,22 @@
[
'data-form-collection' => 'update',
],
- ]);
+ ])
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleType.php
index 6e58bb58..7f04b8cc 100644
--- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleType.php
+++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleType.php
@@ -1,19 +1,18 @@
add('name', TextType::class)
->add('active', CheckboxType::class)
->add('conditions', ImportRuleConditionCollectionType::class)
- ->add('actions', ImportRuleActionCollectionType::class);
+ ->add('actions', ImportRuleActionCollectionType::class)
+ ;
}
public function configureOptions(OptionsResolver $resolver): void
diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRulesInterpreterType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRulesInterpreterType.php
index 084807f8..b5edf792 100644
--- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRulesInterpreterType.php
+++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRulesInterpreterType.php
@@ -1,19 +1,18 @@
ImportRuleType::class,
'allow_add' => true,
'allow_delete' => true,
- ]);
+ ])
+ ;
}
}
diff --git a/src/DataDefinitionsBundle/Rules/Model/ImportRule.php b/src/DataDefinitionsBundle/Rules/Model/ImportRule.php
index e6647016..61c4602d 100644
--- a/src/DataDefinitionsBundle/Rules/Model/ImportRule.php
+++ b/src/DataDefinitionsBundle/Rules/Model/ImportRule.php
@@ -1,19 +1,18 @@
ruleConditionsValidationProcessor = $ruleConditionsValidationProcessor;
}
@@ -36,7 +36,7 @@ public function isImportRuleValid(
DataDefinitionInterface $definition,
Concrete $object,
ImportRuleInterface $importRule,
- array $params
+ array $params,
): bool {
$params['object'] = $object;
@@ -49,7 +49,7 @@ public function isValid(ResourceInterface $subject, RuleInterface $rule, $params
$subject,
$rule,
$rule->getConditions(),
- $params
+ $params,
);
}
}
diff --git a/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessorInterface.php b/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessorInterface.php
index da989245..51b1a74c 100644
--- a/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessorInterface.php
+++ b/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessorInterface.php
@@ -1,25 +1,24 @@
actionServiceRegistry = $actionServiceRegistry;
}
diff --git a/src/DataDefinitionsBundle/Rules/Processor/RuleApplierInterface.php b/src/DataDefinitionsBundle/Rules/Processor/RuleApplierInterface.php
index 47a97d82..29a17a27 100644
--- a/src/DataDefinitionsBundle/Rules/Processor/RuleApplierInterface.php
+++ b/src/DataDefinitionsBundle/Rules/Processor/RuleApplierInterface.php
@@ -1,23 +1,22 @@
getFieldConfiguration($localizedField);
- $localizedField->setGroup('localizedfield.'.strtolower($language));
- $localizedField->setType('localizedfield.'.$language);
+ $localizedField->setGroup('localizedfield.' . strtolower($language));
+ $localizedField->setType('localizedfield.' . $language);
$localizedField->setIdentifier(sprintf('%s~%s', $localizedField->getIdentifier(), $language));
$localizedField->setSetter('localizedfield');
$localizedField->setConfig(['language' => $language]);
@@ -85,15 +84,15 @@ public function getClassDefinition(DataObject\ClassDefinition $class): array
foreach ($fields as $brickField) {
$resultField = $this->getFieldConfiguration($brickField);
- $resultField->setGroup('objectbrick.'.$key);
+ $resultField->setGroup('objectbrick.' . $key);
$resultField->setType('objectbrick');
$resultField->setIdentifier(
sprintf(
'objectbrick~%s~%s~%s',
$field->getName(),
$key,
- $resultField->getIdentifier()
- )
+ $resultField->getIdentifier(),
+ ),
);
$resultField->setSetter('objectbrick');
$resultField->setConfig(['class' => $key]);
@@ -116,15 +115,15 @@ public function getClassDefinition(DataObject\ClassDefinition $class): array
foreach ($fieldDefinition as $fieldcollectionField) {
$resultField = $this->getFieldConfiguration($fieldcollectionField);
- $resultField->setGroup('fieldcollection.'.$type);
+ $resultField->setGroup('fieldcollection.' . $type);
$resultField->setType('fieldcollection');
$resultField->setIdentifier(
sprintf(
'fieldcollection~%s~%s~%s',
$field->getName(),
$type,
- $resultField->getIdentifier()
- )
+ $resultField->getIdentifier(),
+ ),
);
$resultField->setSetter('fieldcollection');
$resultField->setConfig(['class' => $type]);
@@ -139,8 +138,8 @@ public function getClassDefinition(DataObject\ClassDefinition $class): array
if ($allowedGroupIds) {
$list->setCondition(
- 'ID in ('.implode(',', $allowedGroupIds).') AND storeId = ?',
- [$field->getStoreId()]
+ 'ID in (' . implode(',', $allowedGroupIds) . ') AND storeId = ?',
+ [$field->getStoreId()],
);
} else {
$list->setCondition('storeId = ?', [$field->getStoreId()]);
@@ -162,15 +161,15 @@ public function getClassDefinition(DataObject\ClassDefinition $class): array
$toColumn = new ToColumn();
$toColumn->setGroup(
- sprintf('classificationstore - %s (%s)', $config->getName(), $config->getId())
+ sprintf('classificationstore - %s (%s)', $config->getName(), $config->getId()),
);
$toColumn->setIdentifier(
sprintf(
'classificationstore~%s~%s~%s',
$field->getName(),
$keyConfig->getId(),
- $config->getId()
- )
+ $config->getId(),
+ ),
);
$toColumn->setType('classificationstore');
$toColumn->setFieldtype($keyConfig->getType());
diff --git a/src/DataDefinitionsBundle/Service/StorageLocator.php b/src/DataDefinitionsBundle/Service/StorageLocator.php
index b60d3599..54f12e06 100644
--- a/src/DataDefinitionsBundle/Service/StorageLocator.php
+++ b/src/DataDefinitionsBundle/Service/StorageLocator.php
@@ -1,19 +1,18 @@
locator = $locator;
}
diff --git a/src/DataDefinitionsBundle/Setter/ClassificationStoreFieldGetter.php b/src/DataDefinitionsBundle/Setter/ClassificationStoreFieldGetter.php
index 978fc67a..ad2f0a33 100644
--- a/src/DataDefinitionsBundle/Setter/ClassificationStoreFieldGetter.php
+++ b/src/DataDefinitionsBundle/Setter/ClassificationStoreFieldGetter.php
@@ -1,26 +1,25 @@
getLocalizedKeyValue(
$groupId,
$keyConfig->getId(),
- $language
+ $language,
);
- if (is_null($value)) {
+ if (null === $value) {
continue;
}
diff --git a/src/DataDefinitionsBundle/Setter/ClassificationStoreSetter.php b/src/DataDefinitionsBundle/Setter/ClassificationStoreSetter.php
index 252c01d1..2a479ce9 100644
--- a/src/DataDefinitionsBundle/Setter/ClassificationStoreSetter.php
+++ b/src/DataDefinitionsBundle/Setter/ClassificationStoreSetter.php
@@ -1,25 +1,24 @@
getMapping()->getSetterConfig();
$fieldName = $mapConfig['field'];
- $keyConfig = (int)$mapConfig['keyConfig'];
- $groupConfig = (int)$mapConfig['groupConfig'];
+ $keyConfig = (int) $mapConfig['keyConfig'];
+ $groupConfig = (int) $mapConfig['groupConfig'];
$classificationStoreGetter = sprintf('get%s', ucfirst($fieldName));
@@ -52,8 +51,8 @@ public function get(GetterContextInterface $context)
{
$mapConfig = $context->getMapping()->getGetterConfig();
$fieldName = $mapConfig['field'];
- $keyConfig = (int)$mapConfig['keyConfig'];
- $groupConfig = (int)$mapConfig['groupConfig'];
+ $keyConfig = (int) $mapConfig['keyConfig'];
+ $groupConfig = (int) $mapConfig['groupConfig'];
$classificationStoreGetter = sprintf('get%s', ucfirst($fieldName));
diff --git a/src/DataDefinitionsBundle/Setter/CoreShop/StorePriceSetter.php b/src/DataDefinitionsBundle/Setter/CoreShop/StorePriceSetter.php
index c21f79a4..d2a31f61 100644
--- a/src/DataDefinitionsBundle/Setter/CoreShop/StorePriceSetter.php
+++ b/src/DataDefinitionsBundle/Setter/CoreShop/StorePriceSetter.php
@@ -1,36 +1,36 @@
storeRepository = $storeRepository;
}
diff --git a/src/DataDefinitionsBundle/Setter/CoreShop/StoreValuesSetter.php b/src/DataDefinitionsBundle/Setter/CoreShop/StoreValuesSetter.php
index 27d0e3f0..c8a0c80e 100644
--- a/src/DataDefinitionsBundle/Setter/CoreShop/StoreValuesSetter.php
+++ b/src/DataDefinitionsBundle/Setter/CoreShop/StoreValuesSetter.php
@@ -1,36 +1,36 @@
storeRepository = $storeRepository;
}
diff --git a/src/DataDefinitionsBundle/Setter/FieldCollectionSetter.php b/src/DataDefinitionsBundle/Setter/FieldCollectionSetter.php
index 7ed4bcda..78eadaf0 100644
--- a/src/DataDefinitionsBundle/Setter/FieldCollectionSetter.php
+++ b/src/DataDefinitionsBundle/Setter/FieldCollectionSetter.php
@@ -1,26 +1,25 @@
isValidKey(
- $mappedKeys,
- $item,
- $context->getDataRow()
- )) {
+ $mappedKeys,
+ $item,
+ $context->getDataRow(),
+ )) {
if ($item instanceof AbstractFieldCollection) {
$item->setValue($field, $context->getValue());
}
@@ -99,7 +98,7 @@ public function get(GetterContextInterface $context)
$config = $context->getMapping()->getGetterConfig();
$fieldName = $config['field'];
$class = $config['class'];
- $fieldCollectionClass = 'Pimcore\Model\DataObject\Fieldcollection\Data\\'.ucfirst($class);
+ $fieldCollectionClass = 'Pimcore\Model\DataObject\Fieldcollection\Data\\' . ucfirst($class);
$field = $keyParts[3];
$getter = sprintf('get%s', ucfirst($fieldName));
diff --git a/src/DataDefinitionsBundle/Setter/KeySetter.php b/src/DataDefinitionsBundle/Setter/KeySetter.php
index 41d08cf0..f2d38c48 100644
--- a/src/DataDefinitionsBundle/Setter/KeySetter.php
+++ b/src/DataDefinitionsBundle/Setter/KeySetter.php
@@ -1,23 +1,22 @@
getObject(), $setter)) {
- $context->getObject()->$setter(DataObject\Service::getValidKey($context->getValue(), "object"));
+ $context->getObject()->$setter(DataObject\Service::getValidKey($context->getValue(), 'object'));
}
}
}
diff --git a/src/DataDefinitionsBundle/Setter/LocalizedfieldSetter.php b/src/DataDefinitionsBundle/Setter/LocalizedfieldSetter.php
index f91e4494..7953142c 100644
--- a/src/DataDefinitionsBundle/Setter/LocalizedfieldSetter.php
+++ b/src/DataDefinitionsBundle/Setter/LocalizedfieldSetter.php
@@ -1,19 +1,18 @@
getObject()->setType(Concrete::OBJECT_TYPE_OBJECT);
}
}
-
-
diff --git a/src/DataDefinitionsBundle/Setter/ObjectbrickSetter.php b/src/DataDefinitionsBundle/Setter/ObjectbrickSetter.php
index 56850858..b63d27e5 100644
--- a/src/DataDefinitionsBundle/Setter/ObjectbrickSetter.php
+++ b/src/DataDefinitionsBundle/Setter/ObjectbrickSetter.php
@@ -1,26 +1,25 @@
$brickClassGetter();
if (!$brickFieldObject instanceof AbstractData) {
- $brickFieldObjectClass = 'Pimcore\Model\DataObject\Objectbrick\Data\\'.$class;
+ $brickFieldObjectClass = 'Pimcore\Model\DataObject\Objectbrick\Data\\' . $class;
$brickFieldObject = new $brickFieldObjectClass($context->getObject());
@@ -91,7 +90,7 @@ public function get(GetterContextInterface $context)
$brickFieldObject = $brick->$brickClassGetter();
if (!$brickFieldObject instanceof AbstractData) {
- $brickFieldObjectClass = 'Pimcore\Model\DataObject\Objectbrick\Data\\'.$class;
+ $brickFieldObjectClass = 'Pimcore\Model\DataObject\Objectbrick\Data\\' . $class;
$brickFieldObject = new $brickFieldObjectClass($context->getObject());
diff --git a/src/DataDefinitionsBundle/Setter/RelationSetter.php b/src/DataDefinitionsBundle/Setter/RelationSetter.php
index 98050a31..298cab83 100644
--- a/src/DataDefinitionsBundle/Setter/RelationSetter.php
+++ b/src/DataDefinitionsBundle/Setter/RelationSetter.php
@@ -1,19 +1,18 @@
getValue();
@@ -45,7 +44,7 @@ public function set(SetterContextInterface $context): void
// Add all values that does not already exist.
foreach ($value as $newElement) {
- $newKey = (string)$newElement;
+ $newKey = (string) $newElement;
if (!in_array($newKey, $existingKeys)) {
$existingElements[] = $newElement;
}
diff --git a/src/DataDefinitionsBundle/Setter/SetterInterface.php b/src/DataDefinitionsBundle/Setter/SetterInterface.php
index cf88b195..9d947b8c 100644
--- a/src/DataDefinitionsBundle/Setter/SetterInterface.php
+++ b/src/DataDefinitionsBundle/Setter/SetterInterface.php
@@ -1,19 +1,18 @@
Date: Thu, 17 Oct 2024 08:13:26 +0200
Subject: [PATCH 2/8] [License] change license to Dual-License with GPL and
Data Definitions Commercial License (DDCL)
---
src/BehatKernel.php | 3 ---
.../Command/ConvertExportDefinitionsToYaml.php | 3 ---
.../Command/ConvertImportDefinitionsToYaml.php | 3 ---
.../Compiler/PersisterRegistryCompilerPass.php | 3 ---
src/DataDefinitionsBundle/Event/EventDispatcher.php | 3 ---
src/DataDefinitionsBundle/Event/EventDispatcherInterface.php | 3 ---
src/DataDefinitionsBundle/Form/Type/ExportMappingType.php | 3 ---
src/DataDefinitionsBundle/Form/Type/FilterChoiceType.php | 3 ---
.../Form/Type/Interpreter/CarbonInterpreterType.php | 3 ---
.../Form/Type/Interpreter/CoreShop/MoneyInterpreterType.php | 3 ---
src/DataDefinitionsBundle/Form/Type/PersisterChoiceType.php | 3 ---
src/DataDefinitionsBundle/Model/IdGenerator.php | 3 ---
src/DataDefinitionsBundle/Persister/Persister.php | 3 ---
src/DataDefinitionsBundle/Persister/PersisterInterface.php | 3 ---
src/Kernel.php | 3 ---
15 files changed, 45 deletions(-)
diff --git a/src/BehatKernel.php b/src/BehatKernel.php
index 2e149d73..08af1c45 100644
--- a/src/BehatKernel.php
+++ b/src/BehatKernel.php
@@ -3,8 +3,6 @@
declare(strict_types=1);
/*
- * CoreShop
- *
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Data Definitions Commercial License (DDCL)
@@ -13,7 +11,6 @@
*
* @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
* @license GPLv3 and DDCL
- *
*/
use Pimcore\HttpKernel\BundleCollection\BundleCollection;
diff --git a/src/DataDefinitionsBundle/Command/ConvertExportDefinitionsToYaml.php b/src/DataDefinitionsBundle/Command/ConvertExportDefinitionsToYaml.php
index 3a54575e..c13e79b6 100644
--- a/src/DataDefinitionsBundle/Command/ConvertExportDefinitionsToYaml.php
+++ b/src/DataDefinitionsBundle/Command/ConvertExportDefinitionsToYaml.php
@@ -3,8 +3,6 @@
declare(strict_types=1);
/*
- * CoreShop
- *
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Data Definitions Commercial License (DDCL)
@@ -13,7 +11,6 @@
*
* @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
* @license GPLv3 and DDCL
- *
*/
namespace Instride\Bundle\DataDefinitionsBundle\Command;
diff --git a/src/DataDefinitionsBundle/Command/ConvertImportDefinitionsToYaml.php b/src/DataDefinitionsBundle/Command/ConvertImportDefinitionsToYaml.php
index 84a0ed8f..455ce6db 100644
--- a/src/DataDefinitionsBundle/Command/ConvertImportDefinitionsToYaml.php
+++ b/src/DataDefinitionsBundle/Command/ConvertImportDefinitionsToYaml.php
@@ -3,8 +3,6 @@
declare(strict_types=1);
/*
- * CoreShop
- *
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Data Definitions Commercial License (DDCL)
@@ -13,7 +11,6 @@
*
* @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
* @license GPLv3 and DDCL
- *
*/
namespace Instride\Bundle\DataDefinitionsBundle\Command;
diff --git a/src/DataDefinitionsBundle/DependencyInjection/Compiler/PersisterRegistryCompilerPass.php b/src/DataDefinitionsBundle/DependencyInjection/Compiler/PersisterRegistryCompilerPass.php
index 4353e2ea..9f1e3906 100644
--- a/src/DataDefinitionsBundle/DependencyInjection/Compiler/PersisterRegistryCompilerPass.php
+++ b/src/DataDefinitionsBundle/DependencyInjection/Compiler/PersisterRegistryCompilerPass.php
@@ -3,8 +3,6 @@
declare(strict_types=1);
/*
- * CoreShop
- *
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Data Definitions Commercial License (DDCL)
@@ -13,7 +11,6 @@
*
* @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
* @license GPLv3 and DDCL
- *
*/
namespace Instride\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler;
diff --git a/src/DataDefinitionsBundle/Event/EventDispatcher.php b/src/DataDefinitionsBundle/Event/EventDispatcher.php
index 1ecfadc8..7f72f591 100644
--- a/src/DataDefinitionsBundle/Event/EventDispatcher.php
+++ b/src/DataDefinitionsBundle/Event/EventDispatcher.php
@@ -3,8 +3,6 @@
declare(strict_types=1);
/*
- * CoreShop
- *
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Data Definitions Commercial License (DDCL)
@@ -13,7 +11,6 @@
*
* @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
* @license GPLv3 and DDCL
- *
*/
namespace Instride\Bundle\DataDefinitionsBundle\Event;
diff --git a/src/DataDefinitionsBundle/Event/EventDispatcherInterface.php b/src/DataDefinitionsBundle/Event/EventDispatcherInterface.php
index c66b3899..f9c125da 100644
--- a/src/DataDefinitionsBundle/Event/EventDispatcherInterface.php
+++ b/src/DataDefinitionsBundle/Event/EventDispatcherInterface.php
@@ -3,8 +3,6 @@
declare(strict_types=1);
/*
- * CoreShop
- *
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Data Definitions Commercial License (DDCL)
@@ -13,7 +11,6 @@
*
* @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
* @license GPLv3 and DDCL
- *
*/
namespace Instride\Bundle\DataDefinitionsBundle\Event;
diff --git a/src/DataDefinitionsBundle/Form/Type/ExportMappingType.php b/src/DataDefinitionsBundle/Form/Type/ExportMappingType.php
index a47ed592..68247b96 100644
--- a/src/DataDefinitionsBundle/Form/Type/ExportMappingType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ExportMappingType.php
@@ -3,8 +3,6 @@
declare(strict_types=1);
/*
- * CoreShop
- *
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Data Definitions Commercial License (DDCL)
@@ -13,7 +11,6 @@
*
* @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
* @license GPLv3 and DDCL
- *
*/
namespace Instride\Bundle\DataDefinitionsBundle\Form\Type;
diff --git a/src/DataDefinitionsBundle/Form/Type/FilterChoiceType.php b/src/DataDefinitionsBundle/Form/Type/FilterChoiceType.php
index 62ceca37..c1372452 100644
--- a/src/DataDefinitionsBundle/Form/Type/FilterChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/FilterChoiceType.php
@@ -3,8 +3,6 @@
declare(strict_types=1);
/*
- * CoreShop
- *
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Data Definitions Commercial License (DDCL)
@@ -13,7 +11,6 @@
*
* @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
* @license GPLv3 and DDCL
- *
*/
namespace Instride\Bundle\DataDefinitionsBundle\Form\Type;
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/CarbonInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/CarbonInterpreterType.php
index 5d70f144..81da3156 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/CarbonInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/CarbonInterpreterType.php
@@ -3,8 +3,6 @@
declare(strict_types=1);
/*
- * CoreShop
- *
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Data Definitions Commercial License (DDCL)
@@ -13,7 +11,6 @@
*
* @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
* @license GPLv3 and DDCL
- *
*/
namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter;
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/MoneyInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/MoneyInterpreterType.php
index 8840a4b3..b33ac2f7 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/MoneyInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/MoneyInterpreterType.php
@@ -3,8 +3,6 @@
declare(strict_types=1);
/*
- * CoreShop
- *
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Data Definitions Commercial License (DDCL)
@@ -13,7 +11,6 @@
*
* @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
* @license GPLv3 and DDCL
- *
*/
namespace Instride\Bundle\DataDefinitionsBundle\Form\Type\Interpreter\CoreShop;
diff --git a/src/DataDefinitionsBundle/Form/Type/PersisterChoiceType.php b/src/DataDefinitionsBundle/Form/Type/PersisterChoiceType.php
index 92f7212c..4fa692ec 100644
--- a/src/DataDefinitionsBundle/Form/Type/PersisterChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/PersisterChoiceType.php
@@ -3,8 +3,6 @@
declare(strict_types=1);
/*
- * CoreShop
- *
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Data Definitions Commercial License (DDCL)
@@ -13,7 +11,6 @@
*
* @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
* @license GPLv3 and DDCL
- *
*/
namespace Instride\Bundle\DataDefinitionsBundle\Form\Type;
diff --git a/src/DataDefinitionsBundle/Model/IdGenerator.php b/src/DataDefinitionsBundle/Model/IdGenerator.php
index 4b35cd57..4cfddf00 100644
--- a/src/DataDefinitionsBundle/Model/IdGenerator.php
+++ b/src/DataDefinitionsBundle/Model/IdGenerator.php
@@ -3,8 +3,6 @@
declare(strict_types=1);
/*
- * CoreShop
- *
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Data Definitions Commercial License (DDCL)
@@ -13,7 +11,6 @@
*
* @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
* @license GPLv3 and DDCL
- *
*/
namespace Instride\Bundle\DataDefinitionsBundle\Model;
diff --git a/src/DataDefinitionsBundle/Persister/Persister.php b/src/DataDefinitionsBundle/Persister/Persister.php
index ebf373bf..190d7aaf 100644
--- a/src/DataDefinitionsBundle/Persister/Persister.php
+++ b/src/DataDefinitionsBundle/Persister/Persister.php
@@ -3,8 +3,6 @@
declare(strict_types=1);
/*
- * CoreShop
- *
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Data Definitions Commercial License (DDCL)
@@ -13,7 +11,6 @@
*
* @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
* @license GPLv3 and DDCL
- *
*/
namespace Instride\Bundle\DataDefinitionsBundle\Persister;
diff --git a/src/DataDefinitionsBundle/Persister/PersisterInterface.php b/src/DataDefinitionsBundle/Persister/PersisterInterface.php
index 072e90b4..96225674 100644
--- a/src/DataDefinitionsBundle/Persister/PersisterInterface.php
+++ b/src/DataDefinitionsBundle/Persister/PersisterInterface.php
@@ -3,8 +3,6 @@
declare(strict_types=1);
/*
- * CoreShop
- *
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Data Definitions Commercial License (DDCL)
@@ -13,7 +11,6 @@
*
* @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
* @license GPLv3 and DDCL
- *
*/
namespace Instride\Bundle\DataDefinitionsBundle\Persister;
diff --git a/src/Kernel.php b/src/Kernel.php
index b298fc14..5d60c65b 100644
--- a/src/Kernel.php
+++ b/src/Kernel.php
@@ -3,8 +3,6 @@
declare(strict_types=1);
/*
- * CoreShop
- *
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Data Definitions Commercial License (DDCL)
@@ -13,7 +11,6 @@
*
* @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
* @license GPLv3 and DDCL
- *
*/
use Pimcore\HttpKernel\BundleCollection\BundleCollection;
From 7889ad8f99f3da6610c5fc4ef21bbf222dd5220c Mon Sep 17 00:00:00 2001
From: Dominik Pfaffenbauer
Date: Thu, 17 Oct 2024 08:21:08 +0200
Subject: [PATCH 3/8] fix asset url interpreter
---
features/interpreter/asset_url.feature | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/features/interpreter/asset_url.feature b/features/interpreter/asset_url.feature
index f7462e79..14225f40 100644
--- a/features/interpreter/asset_url.feature
+++ b/features/interpreter/asset_url.feature
@@ -23,7 +23,7 @@ Feature: Adding a import with a interpreter
Given there is a file test.csv with content:
"""
name,image
- test1,https://via.placeholder.com/300/09f/fff.png
+ test1,https://placehold.co/600x400?text=Hello+Pimcore.png
"""
And I run the import-definitions with params:
| key | value |
From fd76da28c5f177091a091c12ba0eabb10981dd43 Mon Sep 17 00:00:00 2001
From: Dominik Pfaffenbauer
Date: Thu, 17 Oct 2024 08:22:17 +0200
Subject: [PATCH 4/8] [License] change license to Dual-License with GPL and
Data Definitions Commercial License (DDCL)
---
ecs.php | 2 +-
src/BehatKernel.php | 2 +-
src/DataDefinitionsBundle/Cleaner/AbstractCleaner.php | 2 +-
src/DataDefinitionsBundle/Cleaner/CleanerInterface.php | 2 +-
src/DataDefinitionsBundle/Cleaner/Deleter.php | 2 +-
src/DataDefinitionsBundle/Cleaner/None.php | 2 +-
src/DataDefinitionsBundle/Cleaner/ReferenceCleaner.php | 2 +-
src/DataDefinitionsBundle/Cleaner/Unpublisher.php | 2 +-
.../Command/AbstractImportDefinitionCommand.php | 2 +-
.../Command/ConvertExportDefinitionsToYaml.php | 2 +-
.../Command/ConvertImportDefinitionsToYaml.php | 2 +-
src/DataDefinitionsBundle/Command/ExportCommand.php | 2 +-
src/DataDefinitionsBundle/Command/ImportAsyncCommand.php | 2 +-
src/DataDefinitionsBundle/Command/ImportCommand.php | 2 +-
.../Command/ImportExportDefinitionCommand.php | 2 +-
.../Command/ImportImportDefinitionCommand.php | 2 +-
.../Command/ListExportDefinitionsCommand.php | 2 +-
.../Command/ListImportDefinitionsCommand.php | 2 +-
src/DataDefinitionsBundle/Context/Context.php | 2 +-
src/DataDefinitionsBundle/Context/ContextFactory.php | 2 +-
src/DataDefinitionsBundle/Context/ContextFactoryInterface.php | 2 +-
src/DataDefinitionsBundle/Context/ContextInterface.php | 2 +-
src/DataDefinitionsBundle/Context/FetcherContext.php | 2 +-
src/DataDefinitionsBundle/Context/FetcherContextInterface.php | 2 +-
src/DataDefinitionsBundle/Context/FilterContext.php | 2 +-
src/DataDefinitionsBundle/Context/FilterContextInterface.php | 2 +-
src/DataDefinitionsBundle/Context/GetterContext.php | 2 +-
src/DataDefinitionsBundle/Context/GetterContextInterface.php | 2 +-
src/DataDefinitionsBundle/Context/InterpreterContext.php | 2 +-
.../Context/InterpreterContextInterface.php | 2 +-
src/DataDefinitionsBundle/Context/LoaderContext.php | 2 +-
src/DataDefinitionsBundle/Context/LoaderContextInterface.php | 2 +-
src/DataDefinitionsBundle/Context/RunnerContext.php | 2 +-
src/DataDefinitionsBundle/Context/RunnerContextInterface.php | 2 +-
src/DataDefinitionsBundle/Context/SetterContext.php | 2 +-
src/DataDefinitionsBundle/Context/SetterContextInterface.php | 2 +-
.../Controller/AbstractDefinitionController.php | 2 +-
.../Controller/ExportDefinitionController.php | 2 +-
.../Controller/ImportDefinitionController.php | 2 +-
src/DataDefinitionsBundle/Controller/ImportRuleController.php | 2 +-
src/DataDefinitionsBundle/DataDefinitionsBundle.php | 2 +-
.../Compiler/CleanerRegistryCompilerPass.php | 2 +-
.../Compiler/ExportProviderRegistryCompilerPass.php | 2 +-
.../Compiler/ExportRunnerRegistryCompilerPass.php | 2 +-
.../Compiler/FetcherRegistryCompilerPass.php | 2 +-
.../DependencyInjection/Compiler/FilterRegistryCompilerPass.php | 2 +-
.../DependencyInjection/Compiler/GetterRegistryCompilerPass.php | 2 +-
.../DependencyInjection/Compiler/ImportRuleActionPass.php | 2 +-
.../DependencyInjection/Compiler/ImportRuleConditionPass.php | 2 +-
.../Compiler/InterpreterRegistryCompilerPass.php | 2 +-
.../DependencyInjection/Compiler/LoaderRegistryCompilerPass.php | 2 +-
.../Compiler/PersisterRegistryCompilerPass.php | 2 +-
.../Compiler/ProviderRegistryCompilerPass.php | 2 +-
.../DependencyInjection/Compiler/RunnerRegistryCompilerPass.php | 2 +-
.../DependencyInjection/Compiler/SetterRegistryCompilerPass.php | 2 +-
src/DataDefinitionsBundle/DependencyInjection/Configuration.php | 2 +-
.../DependencyInjection/DataDefinitionsExtension.php | 2 +-
src/DataDefinitionsBundle/Event/DefinitionEventInterface.php | 2 +-
src/DataDefinitionsBundle/Event/EventDispatcher.php | 2 +-
src/DataDefinitionsBundle/Event/EventDispatcherInterface.php | 2 +-
src/DataDefinitionsBundle/Event/ExportDefinitionEvent.php | 2 +-
src/DataDefinitionsBundle/Event/ImportDefinitionEvent.php | 2 +-
.../EventListener/ObjectDeleteListener.php | 2 +-
.../EventListener/PimcoreSettingsListener.php | 2 +-
src/DataDefinitionsBundle/EventListener/WriteableListener.php | 2 +-
src/DataDefinitionsBundle/Exception/DoNotSetException.php | 2 +-
src/DataDefinitionsBundle/Exception/InterpreterException.php | 2 +-
src/DataDefinitionsBundle/Exception/SpoutException.php | 2 +-
.../Exception/UnexpectedValueException.php | 2 +-
src/DataDefinitionsBundle/Exporter/Exporter.php | 2 +-
src/DataDefinitionsBundle/Exporter/ExporterInterface.php | 2 +-
src/DataDefinitionsBundle/Fetcher/FetcherInterface.php | 2 +-
src/DataDefinitionsBundle/Fetcher/ObjectsFetcher.php | 2 +-
src/DataDefinitionsBundle/Filter/FilterInterface.php | 2 +-
.../Form/DataMapper/DefinitionMappingDataMapper.php | 2 +-
src/DataDefinitionsBundle/Form/Type/ClassChoiceType.php | 2 +-
src/DataDefinitionsBundle/Form/Type/CleanerChoiceType.php | 2 +-
src/DataDefinitionsBundle/Form/Type/DefinitionChoiceType.php | 2 +-
src/DataDefinitionsBundle/Form/Type/ExportDefinitionType.php | 2 +-
.../Form/Type/ExportMappingCollectionType.php | 2 +-
src/DataDefinitionsBundle/Form/Type/ExportMappingType.php | 2 +-
.../Form/Type/ExportProvider/CsvProviderType.php | 2 +-
.../Form/Type/ExportProvider/XmlProviderType.php | 2 +-
.../Form/Type/ExportProviderChoiceType.php | 2 +-
src/DataDefinitionsBundle/Form/Type/ExportRunnerChoiceType.php | 2 +-
.../Form/Type/Fetcher/ObjectsFetcherType.php | 2 +-
src/DataDefinitionsBundle/Form/Type/FetcherChoiceType.php | 2 +-
src/DataDefinitionsBundle/Form/Type/FilterChoiceType.php | 2 +-
src/DataDefinitionsBundle/Form/Type/ImportDefinitionType.php | 2 +-
.../Form/Type/ImportMappingCollectionType.php | 2 +-
src/DataDefinitionsBundle/Form/Type/ImportMappingType.php | 2 +-
.../Form/Type/ImportProvider/CsvProviderType.php | 2 +-
.../Form/Type/ImportProvider/ExcelProviderType.php | 2 +-
.../Form/Type/ImportProvider/ExternalSqlProviderType.php | 2 +-
.../Form/Type/ImportProvider/JsonProviderType.php | 2 +-
.../Form/Type/ImportProvider/RawProviderType.php | 2 +-
.../Form/Type/ImportProvider/SqlProviderType.php | 2 +-
.../Form/Type/ImportProvider/XmlProviderType.php | 2 +-
.../Form/Type/ImportProviderChoiceType.php | 2 +-
src/DataDefinitionsBundle/Form/Type/ImportRulesImportType.php | 2 +-
.../Form/Type/Interpreter/AssetByPathInterpreterType.php | 2 +-
.../Form/Type/Interpreter/AssetUrlInterpreterType.php | 2 +-
.../Form/Type/Interpreter/AssetsUrlInterpreterType.php | 2 +-
.../Form/Type/Interpreter/CarbonInterpreterType.php | 2 +-
.../Form/Type/Interpreter/ConditionalInterpreterType.php | 2 +-
.../Form/Type/Interpreter/CoreShop/MoneyInterpreterType.php | 2 +-
.../Form/Type/Interpreter/CoreShop/PriceInterpreterType.php | 2 +-
.../Form/Type/Interpreter/CoreShop/StoresInterpreterType.php | 2 +-
.../Form/Type/Interpreter/DefaultValueInterpreterType.php | 2 +-
.../Form/Type/Interpreter/DefinitionType.php | 2 +-
.../Form/Type/Interpreter/ExpressionInterpreterType.php | 2 +-
.../Form/Type/Interpreter/HrefInterpreterType.php | 2 +-
.../Form/Type/Interpreter/InterpreterCollectionType.php | 2 +-
.../Form/Type/Interpreter/InterpreterType.php | 2 +-
.../Form/Type/Interpreter/IteratorInterpreterType.php | 2 +-
.../Form/Type/Interpreter/MappingInterpreterType.php | 2 +-
src/DataDefinitionsBundle/Form/Type/Interpreter/MappingType.php | 2 +-
.../Form/Type/Interpreter/MetadataInterpreterType.php | 2 +-
.../Form/Type/Interpreter/MultiHrefInterpreterType.php | 2 +-
.../Form/Type/Interpreter/NestedInterpreterType.php | 2 +-
.../Form/Type/Interpreter/ObjectResolverType.php | 2 +-
.../Form/Type/Interpreter/QuantityValueInterpreterType.php | 2 +-
.../Form/Type/Interpreter/SpecificObjectInterpreterType.php | 2 +-
.../Form/Type/Interpreter/TwigInterpreterType.php | 2 +-
.../Form/Type/Interpreter/TypeCastingInterpreterType.php | 2 +-
src/DataDefinitionsBundle/Form/Type/InterpreterChoiceType.php | 2 +-
src/DataDefinitionsBundle/Form/Type/LoaderChoiceType.php | 2 +-
src/DataDefinitionsBundle/Form/Type/NoConfigurationType.php | 2 +-
src/DataDefinitionsBundle/Form/Type/PersisterChoiceType.php | 2 +-
.../Type/ProcessManager/ExportDefinitionObjectStartupForm.php | 2 +-
.../Form/Type/ProcessManager/ImportDefinitionsType.php | 2 +-
src/DataDefinitionsBundle/Form/Type/RunnerChoiceType.php | 2 +-
.../Form/Type/Setter/ClassificationStoreSetterType.php | 2 +-
.../Form/Type/Setter/CoreShop/StorePriceSetterType.php | 2 +-
.../Form/Type/Setter/CoreShop/StoreValuesSetterType.php | 2 +-
.../Form/Type/Setter/FieldCollectionSetterType.php | 2 +-
.../Form/Type/Setter/LocalizedFieldSetterType.php | 2 +-
.../Form/Type/Setter/ObjectBrickSetterType.php | 2 +-
src/DataDefinitionsBundle/Form/Type/SetterChoiceType.php | 2 +-
.../Getter/DynamicColumnGetterInterface.php | 2 +-
src/DataDefinitionsBundle/Getter/GetterInterface.php | 2 +-
src/DataDefinitionsBundle/Importer/AsyncImporterInterface.php | 2 +-
src/DataDefinitionsBundle/Importer/Importer.php | 2 +-
src/DataDefinitionsBundle/Importer/ImporterInterface.php | 2 +-
src/DataDefinitionsBundle/Installer.php | 2 +-
.../Interpreter/AssetByPathInterpreter.php | 2 +-
src/DataDefinitionsBundle/Interpreter/AssetUrlInterpreter.php | 2 +-
src/DataDefinitionsBundle/Interpreter/AssetsUrlInterpreter.php | 2 +-
src/DataDefinitionsBundle/Interpreter/CarbonInterpreter.php | 2 +-
src/DataDefinitionsBundle/Interpreter/CheckboxInterpreter.php | 2 +-
.../Interpreter/ConditionalInterpreter.php | 2 +-
.../Interpreter/CoreShop/CurrencyInterpreter.php | 2 +-
.../Interpreter/CoreShop/MoneyInterpreter.php | 2 +-
.../Interpreter/CoreShop/PriceInterpreter.php | 2 +-
.../Interpreter/CoreShop/StoresInterpreter.php | 2 +-
.../Interpreter/DefaultValueInterpreter.php | 2 +-
src/DataDefinitionsBundle/Interpreter/DefinitionInterpreter.php | 2 +-
.../Interpreter/DoNotSetOnEmptyInterpreter.php | 2 +-
src/DataDefinitionsBundle/Interpreter/ExpressionInterpreter.php | 2 +-
.../Interpreter/ExternalImageInterpreter.php | 2 +-
src/DataDefinitionsBundle/Interpreter/HrefInterpreter.php | 2 +-
src/DataDefinitionsBundle/Interpreter/ImportRuleInterpreter.php | 2 +-
src/DataDefinitionsBundle/Interpreter/InterpreterInterface.php | 2 +-
src/DataDefinitionsBundle/Interpreter/IteratorInterpreter.php | 2 +-
src/DataDefinitionsBundle/Interpreter/LinkInterpreter.php | 2 +-
src/DataDefinitionsBundle/Interpreter/MappingInterpreter.php | 2 +-
src/DataDefinitionsBundle/Interpreter/MetadataInterpreter.php | 2 +-
src/DataDefinitionsBundle/Interpreter/MultiHrefInterpreter.php | 2 +-
src/DataDefinitionsBundle/Interpreter/NestedInterpreter.php | 2 +-
.../Interpreter/ObjectResolverInterpreter.php | 2 +-
.../Interpreter/QuantityValueInterpreter.php | 2 +-
.../Interpreter/SpecificObjectInterpreter.php | 2 +-
src/DataDefinitionsBundle/Interpreter/TwigInterpreter.php | 2 +-
.../Interpreter/TypeCastingInterpreter.php | 2 +-
src/DataDefinitionsBundle/Loader/LoaderInterface.php | 2 +-
src/DataDefinitionsBundle/Loader/PrimaryKeyLoader.php | 2 +-
src/DataDefinitionsBundle/Messenger/ImportRowMessage.php | 2 +-
src/DataDefinitionsBundle/Messenger/ImportRowMessageHandler.php | 2 +-
src/DataDefinitionsBundle/Model/AbstractColumn.php | 2 +-
src/DataDefinitionsBundle/Model/AbstractDataDefinition.php | 2 +-
src/DataDefinitionsBundle/Model/AbstractMapping.php | 2 +-
src/DataDefinitionsBundle/Model/DataDefinitionInterface.php | 2 +-
src/DataDefinitionsBundle/Model/DataSetAwareTrait.php | 2 +-
src/DataDefinitionsBundle/Model/ExportDefinition.php | 2 +-
src/DataDefinitionsBundle/Model/ExportDefinition/Dao.php | 2 +-
src/DataDefinitionsBundle/Model/ExportDefinition/Listing.php | 2 +-
.../Model/ExportDefinition/Listing/Dao.php | 2 +-
src/DataDefinitionsBundle/Model/ExportDefinitionInterface.php | 2 +-
src/DataDefinitionsBundle/Model/ExportMapping.php | 2 +-
src/DataDefinitionsBundle/Model/ExportMapping/FromColumn.php | 2 +-
src/DataDefinitionsBundle/Model/ExportMapping/ToColumn.php | 2 +-
src/DataDefinitionsBundle/Model/IdGenerator.php | 2 +-
src/DataDefinitionsBundle/Model/ImportDefinition.php | 2 +-
src/DataDefinitionsBundle/Model/ImportDefinition/Dao.php | 2 +-
src/DataDefinitionsBundle/Model/ImportDefinition/Listing.php | 2 +-
.../Model/ImportDefinition/Listing/Dao.php | 2 +-
src/DataDefinitionsBundle/Model/ImportDefinitionInterface.php | 2 +-
src/DataDefinitionsBundle/Model/ImportMapping.php | 2 +-
src/DataDefinitionsBundle/Model/ImportMapping/FromColumn.php | 2 +-
src/DataDefinitionsBundle/Model/ImportMapping/ToColumn.php | 2 +-
src/DataDefinitionsBundle/Model/Log.php | 2 +-
src/DataDefinitionsBundle/Model/Log/Dao.php | 2 +-
src/DataDefinitionsBundle/Model/Log/Listing.php | 2 +-
src/DataDefinitionsBundle/Model/Log/Listing/Dao.php | 2 +-
src/DataDefinitionsBundle/Model/MappingInterface.php | 2 +-
src/DataDefinitionsBundle/Model/ParamsAwareInterface.php | 2 +-
src/DataDefinitionsBundle/Model/ParamsAwareTrait.php | 2 +-
src/DataDefinitionsBundle/Persister/Persister.php | 2 +-
src/DataDefinitionsBundle/Persister/PersisterInterface.php | 2 +-
.../ProcessManager/AbstractProcessManagerListener.php | 2 +-
.../ProcessManager/ArtifactGenerationProviderInterface.php | 2 +-
.../ProcessManager/ArtifactProviderTrait.php | 2 +-
.../ProcessManager/DataDefinitionProcessTrait.php | 2 +-
.../ProcessManager/ExportDefinitionProcess.php | 2 +-
.../ProcessManager/ExportDefinitionStartupFormResolver.php | 2 +-
.../ProcessManager/ImportDefinitionProcess.php | 2 +-
.../ProcessManager/ImportDefinitionsReport.php | 2 +-
.../ProcessManager/ProcessManagerExportListener.php | 2 +-
.../ProcessManager/ProcessManagerImportListener.php | 2 +-
src/DataDefinitionsBundle/Provider/AbstractFileProvider.php | 2 +-
src/DataDefinitionsBundle/Provider/AbstractSqlProvider.php | 2 +-
src/DataDefinitionsBundle/Provider/ArrayImportDataSet.php | 2 +-
src/DataDefinitionsBundle/Provider/CsvProvider.php | 2 +-
src/DataDefinitionsBundle/Provider/ExcelProvider.php | 2 +-
src/DataDefinitionsBundle/Provider/ExportProviderInterface.php | 2 +-
src/DataDefinitionsBundle/Provider/ExternalSqlProvider.php | 2 +-
src/DataDefinitionsBundle/Provider/ImportDataSet.php | 2 +-
src/DataDefinitionsBundle/Provider/ImportDataSetInterface.php | 2 +-
src/DataDefinitionsBundle/Provider/ImportProviderInterface.php | 2 +-
src/DataDefinitionsBundle/Provider/JsonProvider.php | 2 +-
src/DataDefinitionsBundle/Provider/RawProvider.php | 2 +-
src/DataDefinitionsBundle/Provider/SqlProvider.php | 2 +-
src/DataDefinitionsBundle/Provider/TraversableImportDataSet.php | 2 +-
src/DataDefinitionsBundle/Provider/XmlProvider.php | 2 +-
src/DataDefinitionsBundle/Repository/DefinitionRepository.php | 2 +-
src/DataDefinitionsBundle/Rules/Action/ExpressionProcessor.php | 2 +-
.../Rules/Action/ImportRuleProcessorInterface.php | 2 +-
src/DataDefinitionsBundle/Rules/Action/ObjectProcessor.php | 2 +-
.../Rules/Condition/AbstractConditionChecker.php | 2 +-
.../Rules/Condition/ExpressionConditionChecker.php | 2 +-
.../Rules/Condition/ImportRuleConditionCheckerInterface.php | 2 +-
.../Rules/Form/Type/Action/ExpressionType.php | 2 +-
src/DataDefinitionsBundle/Rules/Form/Type/Action/ObjectType.php | 2 +-
.../Rules/Form/Type/Condition/ExpressionConditionType.php | 2 +-
.../Rules/Form/Type/ImportRuleActionChoiceType.php | 2 +-
.../Rules/Form/Type/ImportRuleActionCollectionType.php | 2 +-
.../Rules/Form/Type/ImportRuleActionType.php | 2 +-
.../Rules/Form/Type/ImportRuleConditionChoiceType.php | 2 +-
.../Rules/Form/Type/ImportRuleConditionCollectionType.php | 2 +-
.../Rules/Form/Type/ImportRuleConditionType.php | 2 +-
src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleType.php | 2 +-
.../Rules/Form/Type/ImportRulesInterpreterType.php | 2 +-
src/DataDefinitionsBundle/Rules/Model/ImportRule.php | 2 +-
src/DataDefinitionsBundle/Rules/Model/ImportRuleInterface.php | 2 +-
.../Rules/Processor/ImportRuleValidationProcessor.php | 2 +-
.../Rules/Processor/ImportRuleValidationProcessorInterface.php | 2 +-
src/DataDefinitionsBundle/Rules/Processor/RuleApplier.php | 2 +-
.../Rules/Processor/RuleApplierInterface.php | 2 +-
src/DataDefinitionsBundle/Runner/ExportRunnerInterface.php | 2 +-
.../Runner/ImportStartFinishRunnerInterface.php | 2 +-
src/DataDefinitionsBundle/Runner/RunnerInterface.php | 2 +-
src/DataDefinitionsBundle/Runner/SaveRunnerInterface.php | 2 +-
src/DataDefinitionsBundle/Runner/SetterRunnerInterface.php | 2 +-
src/DataDefinitionsBundle/Service/FieldSelection.php | 2 +-
src/DataDefinitionsBundle/Service/StorageLocator.php | 2 +-
.../Setter/ClassificationStoreFieldGetter.php | 2 +-
src/DataDefinitionsBundle/Setter/ClassificationStoreSetter.php | 2 +-
src/DataDefinitionsBundle/Setter/CoreShop/StorePriceSetter.php | 2 +-
src/DataDefinitionsBundle/Setter/CoreShop/StoreValuesSetter.php | 2 +-
src/DataDefinitionsBundle/Setter/FieldCollectionSetter.php | 2 +-
src/DataDefinitionsBundle/Setter/KeySetter.php | 2 +-
src/DataDefinitionsBundle/Setter/LocalizedfieldSetter.php | 2 +-
src/DataDefinitionsBundle/Setter/ObjectTypeSetter.php | 2 +-
src/DataDefinitionsBundle/Setter/ObjectbrickSetter.php | 2 +-
src/DataDefinitionsBundle/Setter/RelationSetter.php | 2 +-
src/DataDefinitionsBundle/Setter/SetterInterface.php | 2 +-
src/Kernel.php | 2 +-
277 files changed, 277 insertions(+), 277 deletions(-)
diff --git a/ecs.php b/ecs.php
index 3ca4f4a0..efd3792f 100644
--- a/ecs.php
+++ b/ecs.php
@@ -260,7 +260,7 @@
Full copyright and license information is available in
LICENSE.md which is distributed with this source code.
-@copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+@copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
@license GPLv3 and DDCL
EOT;
diff --git a/src/BehatKernel.php b/src/BehatKernel.php
index 08af1c45..8611258a 100644
--- a/src/BehatKernel.php
+++ b/src/BehatKernel.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Cleaner/AbstractCleaner.php b/src/DataDefinitionsBundle/Cleaner/AbstractCleaner.php
index 5be9ccd7..9ee8f39b 100644
--- a/src/DataDefinitionsBundle/Cleaner/AbstractCleaner.php
+++ b/src/DataDefinitionsBundle/Cleaner/AbstractCleaner.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Cleaner/CleanerInterface.php b/src/DataDefinitionsBundle/Cleaner/CleanerInterface.php
index 5469cc36..6f888cad 100644
--- a/src/DataDefinitionsBundle/Cleaner/CleanerInterface.php
+++ b/src/DataDefinitionsBundle/Cleaner/CleanerInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Cleaner/Deleter.php b/src/DataDefinitionsBundle/Cleaner/Deleter.php
index d2cc16fe..4325b4fc 100644
--- a/src/DataDefinitionsBundle/Cleaner/Deleter.php
+++ b/src/DataDefinitionsBundle/Cleaner/Deleter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Cleaner/None.php b/src/DataDefinitionsBundle/Cleaner/None.php
index 9f0b8264..7dbe96d5 100644
--- a/src/DataDefinitionsBundle/Cleaner/None.php
+++ b/src/DataDefinitionsBundle/Cleaner/None.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Cleaner/ReferenceCleaner.php b/src/DataDefinitionsBundle/Cleaner/ReferenceCleaner.php
index 9494539e..c9573e3d 100644
--- a/src/DataDefinitionsBundle/Cleaner/ReferenceCleaner.php
+++ b/src/DataDefinitionsBundle/Cleaner/ReferenceCleaner.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Cleaner/Unpublisher.php b/src/DataDefinitionsBundle/Cleaner/Unpublisher.php
index dbc45432..a9a29466 100644
--- a/src/DataDefinitionsBundle/Cleaner/Unpublisher.php
+++ b/src/DataDefinitionsBundle/Cleaner/Unpublisher.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Command/AbstractImportDefinitionCommand.php b/src/DataDefinitionsBundle/Command/AbstractImportDefinitionCommand.php
index ec53276f..8e38ff81 100644
--- a/src/DataDefinitionsBundle/Command/AbstractImportDefinitionCommand.php
+++ b/src/DataDefinitionsBundle/Command/AbstractImportDefinitionCommand.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Command/ConvertExportDefinitionsToYaml.php b/src/DataDefinitionsBundle/Command/ConvertExportDefinitionsToYaml.php
index c13e79b6..cc025a6b 100644
--- a/src/DataDefinitionsBundle/Command/ConvertExportDefinitionsToYaml.php
+++ b/src/DataDefinitionsBundle/Command/ConvertExportDefinitionsToYaml.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Command/ConvertImportDefinitionsToYaml.php b/src/DataDefinitionsBundle/Command/ConvertImportDefinitionsToYaml.php
index 455ce6db..d7996d3a 100644
--- a/src/DataDefinitionsBundle/Command/ConvertImportDefinitionsToYaml.php
+++ b/src/DataDefinitionsBundle/Command/ConvertImportDefinitionsToYaml.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Command/ExportCommand.php b/src/DataDefinitionsBundle/Command/ExportCommand.php
index d7ed5af8..d147cd20 100644
--- a/src/DataDefinitionsBundle/Command/ExportCommand.php
+++ b/src/DataDefinitionsBundle/Command/ExportCommand.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Command/ImportAsyncCommand.php b/src/DataDefinitionsBundle/Command/ImportAsyncCommand.php
index 4f1b5a64..f0c3e565 100644
--- a/src/DataDefinitionsBundle/Command/ImportAsyncCommand.php
+++ b/src/DataDefinitionsBundle/Command/ImportAsyncCommand.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Command/ImportCommand.php b/src/DataDefinitionsBundle/Command/ImportCommand.php
index cace9ab7..4d80818d 100644
--- a/src/DataDefinitionsBundle/Command/ImportCommand.php
+++ b/src/DataDefinitionsBundle/Command/ImportCommand.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Command/ImportExportDefinitionCommand.php b/src/DataDefinitionsBundle/Command/ImportExportDefinitionCommand.php
index a8b36dbb..0a56c386 100644
--- a/src/DataDefinitionsBundle/Command/ImportExportDefinitionCommand.php
+++ b/src/DataDefinitionsBundle/Command/ImportExportDefinitionCommand.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Command/ImportImportDefinitionCommand.php b/src/DataDefinitionsBundle/Command/ImportImportDefinitionCommand.php
index 042a4dac..fd640885 100644
--- a/src/DataDefinitionsBundle/Command/ImportImportDefinitionCommand.php
+++ b/src/DataDefinitionsBundle/Command/ImportImportDefinitionCommand.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Command/ListExportDefinitionsCommand.php b/src/DataDefinitionsBundle/Command/ListExportDefinitionsCommand.php
index 2fb293e0..1ce5183f 100644
--- a/src/DataDefinitionsBundle/Command/ListExportDefinitionsCommand.php
+++ b/src/DataDefinitionsBundle/Command/ListExportDefinitionsCommand.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Command/ListImportDefinitionsCommand.php b/src/DataDefinitionsBundle/Command/ListImportDefinitionsCommand.php
index b032aa59..d0b9af19 100644
--- a/src/DataDefinitionsBundle/Command/ListImportDefinitionsCommand.php
+++ b/src/DataDefinitionsBundle/Command/ListImportDefinitionsCommand.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Context/Context.php b/src/DataDefinitionsBundle/Context/Context.php
index c59b1ffd..1c79cd6f 100644
--- a/src/DataDefinitionsBundle/Context/Context.php
+++ b/src/DataDefinitionsBundle/Context/Context.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Context/ContextFactory.php b/src/DataDefinitionsBundle/Context/ContextFactory.php
index dddce062..f7c0855f 100644
--- a/src/DataDefinitionsBundle/Context/ContextFactory.php
+++ b/src/DataDefinitionsBundle/Context/ContextFactory.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Context/ContextFactoryInterface.php b/src/DataDefinitionsBundle/Context/ContextFactoryInterface.php
index 7f8147f9..06d0276a 100644
--- a/src/DataDefinitionsBundle/Context/ContextFactoryInterface.php
+++ b/src/DataDefinitionsBundle/Context/ContextFactoryInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Context/ContextInterface.php b/src/DataDefinitionsBundle/Context/ContextInterface.php
index 34860329..ef9f2a35 100644
--- a/src/DataDefinitionsBundle/Context/ContextInterface.php
+++ b/src/DataDefinitionsBundle/Context/ContextInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Context/FetcherContext.php b/src/DataDefinitionsBundle/Context/FetcherContext.php
index 284a2bd7..a46df127 100644
--- a/src/DataDefinitionsBundle/Context/FetcherContext.php
+++ b/src/DataDefinitionsBundle/Context/FetcherContext.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Context/FetcherContextInterface.php b/src/DataDefinitionsBundle/Context/FetcherContextInterface.php
index 40a4487c..2ccaa17a 100644
--- a/src/DataDefinitionsBundle/Context/FetcherContextInterface.php
+++ b/src/DataDefinitionsBundle/Context/FetcherContextInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Context/FilterContext.php b/src/DataDefinitionsBundle/Context/FilterContext.php
index 9d58c876..eca74e3d 100644
--- a/src/DataDefinitionsBundle/Context/FilterContext.php
+++ b/src/DataDefinitionsBundle/Context/FilterContext.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Context/FilterContextInterface.php b/src/DataDefinitionsBundle/Context/FilterContextInterface.php
index 193ac1af..96b28f8e 100644
--- a/src/DataDefinitionsBundle/Context/FilterContextInterface.php
+++ b/src/DataDefinitionsBundle/Context/FilterContextInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Context/GetterContext.php b/src/DataDefinitionsBundle/Context/GetterContext.php
index 926a94a9..e5db28af 100644
--- a/src/DataDefinitionsBundle/Context/GetterContext.php
+++ b/src/DataDefinitionsBundle/Context/GetterContext.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Context/GetterContextInterface.php b/src/DataDefinitionsBundle/Context/GetterContextInterface.php
index 4839fa7f..210d2be3 100644
--- a/src/DataDefinitionsBundle/Context/GetterContextInterface.php
+++ b/src/DataDefinitionsBundle/Context/GetterContextInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Context/InterpreterContext.php b/src/DataDefinitionsBundle/Context/InterpreterContext.php
index 63513b9f..5c651d75 100644
--- a/src/DataDefinitionsBundle/Context/InterpreterContext.php
+++ b/src/DataDefinitionsBundle/Context/InterpreterContext.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Context/InterpreterContextInterface.php b/src/DataDefinitionsBundle/Context/InterpreterContextInterface.php
index 5285f321..70e13f23 100644
--- a/src/DataDefinitionsBundle/Context/InterpreterContextInterface.php
+++ b/src/DataDefinitionsBundle/Context/InterpreterContextInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Context/LoaderContext.php b/src/DataDefinitionsBundle/Context/LoaderContext.php
index 6fa14a80..47dc1172 100644
--- a/src/DataDefinitionsBundle/Context/LoaderContext.php
+++ b/src/DataDefinitionsBundle/Context/LoaderContext.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Context/LoaderContextInterface.php b/src/DataDefinitionsBundle/Context/LoaderContextInterface.php
index f6574180..f5c78abd 100644
--- a/src/DataDefinitionsBundle/Context/LoaderContextInterface.php
+++ b/src/DataDefinitionsBundle/Context/LoaderContextInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Context/RunnerContext.php b/src/DataDefinitionsBundle/Context/RunnerContext.php
index 6126d4e1..4dce37c0 100644
--- a/src/DataDefinitionsBundle/Context/RunnerContext.php
+++ b/src/DataDefinitionsBundle/Context/RunnerContext.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Context/RunnerContextInterface.php b/src/DataDefinitionsBundle/Context/RunnerContextInterface.php
index 06432131..3bf03841 100644
--- a/src/DataDefinitionsBundle/Context/RunnerContextInterface.php
+++ b/src/DataDefinitionsBundle/Context/RunnerContextInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Context/SetterContext.php b/src/DataDefinitionsBundle/Context/SetterContext.php
index 605c87ff..7c4af764 100644
--- a/src/DataDefinitionsBundle/Context/SetterContext.php
+++ b/src/DataDefinitionsBundle/Context/SetterContext.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Context/SetterContextInterface.php b/src/DataDefinitionsBundle/Context/SetterContextInterface.php
index 721863a6..7f3158e4 100644
--- a/src/DataDefinitionsBundle/Context/SetterContextInterface.php
+++ b/src/DataDefinitionsBundle/Context/SetterContextInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Controller/AbstractDefinitionController.php b/src/DataDefinitionsBundle/Controller/AbstractDefinitionController.php
index 905430e1..84ad75af 100644
--- a/src/DataDefinitionsBundle/Controller/AbstractDefinitionController.php
+++ b/src/DataDefinitionsBundle/Controller/AbstractDefinitionController.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Controller/ExportDefinitionController.php b/src/DataDefinitionsBundle/Controller/ExportDefinitionController.php
index 775f1b39..e554ad87 100644
--- a/src/DataDefinitionsBundle/Controller/ExportDefinitionController.php
+++ b/src/DataDefinitionsBundle/Controller/ExportDefinitionController.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Controller/ImportDefinitionController.php b/src/DataDefinitionsBundle/Controller/ImportDefinitionController.php
index e95bb37e..24f9d0f2 100644
--- a/src/DataDefinitionsBundle/Controller/ImportDefinitionController.php
+++ b/src/DataDefinitionsBundle/Controller/ImportDefinitionController.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Controller/ImportRuleController.php b/src/DataDefinitionsBundle/Controller/ImportRuleController.php
index 2faf819b..f2c4fcee 100644
--- a/src/DataDefinitionsBundle/Controller/ImportRuleController.php
+++ b/src/DataDefinitionsBundle/Controller/ImportRuleController.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/DataDefinitionsBundle.php b/src/DataDefinitionsBundle/DataDefinitionsBundle.php
index 0a5e4563..e133f46b 100644
--- a/src/DataDefinitionsBundle/DataDefinitionsBundle.php
+++ b/src/DataDefinitionsBundle/DataDefinitionsBundle.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/DependencyInjection/Compiler/CleanerRegistryCompilerPass.php b/src/DataDefinitionsBundle/DependencyInjection/Compiler/CleanerRegistryCompilerPass.php
index cb77c0f7..0326ddf5 100644
--- a/src/DataDefinitionsBundle/DependencyInjection/Compiler/CleanerRegistryCompilerPass.php
+++ b/src/DataDefinitionsBundle/DependencyInjection/Compiler/CleanerRegistryCompilerPass.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/DependencyInjection/Compiler/ExportProviderRegistryCompilerPass.php b/src/DataDefinitionsBundle/DependencyInjection/Compiler/ExportProviderRegistryCompilerPass.php
index 9889f425..eb03dda8 100644
--- a/src/DataDefinitionsBundle/DependencyInjection/Compiler/ExportProviderRegistryCompilerPass.php
+++ b/src/DataDefinitionsBundle/DependencyInjection/Compiler/ExportProviderRegistryCompilerPass.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/DependencyInjection/Compiler/ExportRunnerRegistryCompilerPass.php b/src/DataDefinitionsBundle/DependencyInjection/Compiler/ExportRunnerRegistryCompilerPass.php
index 4bc5ba43..ba7a0415 100644
--- a/src/DataDefinitionsBundle/DependencyInjection/Compiler/ExportRunnerRegistryCompilerPass.php
+++ b/src/DataDefinitionsBundle/DependencyInjection/Compiler/ExportRunnerRegistryCompilerPass.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/DependencyInjection/Compiler/FetcherRegistryCompilerPass.php b/src/DataDefinitionsBundle/DependencyInjection/Compiler/FetcherRegistryCompilerPass.php
index 3a3e415e..4793da63 100644
--- a/src/DataDefinitionsBundle/DependencyInjection/Compiler/FetcherRegistryCompilerPass.php
+++ b/src/DataDefinitionsBundle/DependencyInjection/Compiler/FetcherRegistryCompilerPass.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/DependencyInjection/Compiler/FilterRegistryCompilerPass.php b/src/DataDefinitionsBundle/DependencyInjection/Compiler/FilterRegistryCompilerPass.php
index e594df83..e4a5246a 100644
--- a/src/DataDefinitionsBundle/DependencyInjection/Compiler/FilterRegistryCompilerPass.php
+++ b/src/DataDefinitionsBundle/DependencyInjection/Compiler/FilterRegistryCompilerPass.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/DependencyInjection/Compiler/GetterRegistryCompilerPass.php b/src/DataDefinitionsBundle/DependencyInjection/Compiler/GetterRegistryCompilerPass.php
index 06efe606..401a2de0 100644
--- a/src/DataDefinitionsBundle/DependencyInjection/Compiler/GetterRegistryCompilerPass.php
+++ b/src/DataDefinitionsBundle/DependencyInjection/Compiler/GetterRegistryCompilerPass.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/DependencyInjection/Compiler/ImportRuleActionPass.php b/src/DataDefinitionsBundle/DependencyInjection/Compiler/ImportRuleActionPass.php
index 68266652..fe1d8b0d 100644
--- a/src/DataDefinitionsBundle/DependencyInjection/Compiler/ImportRuleActionPass.php
+++ b/src/DataDefinitionsBundle/DependencyInjection/Compiler/ImportRuleActionPass.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/DependencyInjection/Compiler/ImportRuleConditionPass.php b/src/DataDefinitionsBundle/DependencyInjection/Compiler/ImportRuleConditionPass.php
index 73cab7a8..e5ed8e50 100644
--- a/src/DataDefinitionsBundle/DependencyInjection/Compiler/ImportRuleConditionPass.php
+++ b/src/DataDefinitionsBundle/DependencyInjection/Compiler/ImportRuleConditionPass.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/DependencyInjection/Compiler/InterpreterRegistryCompilerPass.php b/src/DataDefinitionsBundle/DependencyInjection/Compiler/InterpreterRegistryCompilerPass.php
index df81dc69..508fba2f 100644
--- a/src/DataDefinitionsBundle/DependencyInjection/Compiler/InterpreterRegistryCompilerPass.php
+++ b/src/DataDefinitionsBundle/DependencyInjection/Compiler/InterpreterRegistryCompilerPass.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/DependencyInjection/Compiler/LoaderRegistryCompilerPass.php b/src/DataDefinitionsBundle/DependencyInjection/Compiler/LoaderRegistryCompilerPass.php
index 0537c26e..df88ef91 100644
--- a/src/DataDefinitionsBundle/DependencyInjection/Compiler/LoaderRegistryCompilerPass.php
+++ b/src/DataDefinitionsBundle/DependencyInjection/Compiler/LoaderRegistryCompilerPass.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/DependencyInjection/Compiler/PersisterRegistryCompilerPass.php b/src/DataDefinitionsBundle/DependencyInjection/Compiler/PersisterRegistryCompilerPass.php
index 9f1e3906..2773be07 100644
--- a/src/DataDefinitionsBundle/DependencyInjection/Compiler/PersisterRegistryCompilerPass.php
+++ b/src/DataDefinitionsBundle/DependencyInjection/Compiler/PersisterRegistryCompilerPass.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/DependencyInjection/Compiler/ProviderRegistryCompilerPass.php b/src/DataDefinitionsBundle/DependencyInjection/Compiler/ProviderRegistryCompilerPass.php
index 0618cb66..c4eeaa73 100644
--- a/src/DataDefinitionsBundle/DependencyInjection/Compiler/ProviderRegistryCompilerPass.php
+++ b/src/DataDefinitionsBundle/DependencyInjection/Compiler/ProviderRegistryCompilerPass.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/DependencyInjection/Compiler/RunnerRegistryCompilerPass.php b/src/DataDefinitionsBundle/DependencyInjection/Compiler/RunnerRegistryCompilerPass.php
index ad6399ce..695894fd 100644
--- a/src/DataDefinitionsBundle/DependencyInjection/Compiler/RunnerRegistryCompilerPass.php
+++ b/src/DataDefinitionsBundle/DependencyInjection/Compiler/RunnerRegistryCompilerPass.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/DependencyInjection/Compiler/SetterRegistryCompilerPass.php b/src/DataDefinitionsBundle/DependencyInjection/Compiler/SetterRegistryCompilerPass.php
index 4f6171e2..863514fb 100644
--- a/src/DataDefinitionsBundle/DependencyInjection/Compiler/SetterRegistryCompilerPass.php
+++ b/src/DataDefinitionsBundle/DependencyInjection/Compiler/SetterRegistryCompilerPass.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/DependencyInjection/Configuration.php b/src/DataDefinitionsBundle/DependencyInjection/Configuration.php
index dc9da8f2..1d7009da 100644
--- a/src/DataDefinitionsBundle/DependencyInjection/Configuration.php
+++ b/src/DataDefinitionsBundle/DependencyInjection/Configuration.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/DependencyInjection/DataDefinitionsExtension.php b/src/DataDefinitionsBundle/DependencyInjection/DataDefinitionsExtension.php
index 41b95b0c..4bfe6c21 100644
--- a/src/DataDefinitionsBundle/DependencyInjection/DataDefinitionsExtension.php
+++ b/src/DataDefinitionsBundle/DependencyInjection/DataDefinitionsExtension.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Event/DefinitionEventInterface.php b/src/DataDefinitionsBundle/Event/DefinitionEventInterface.php
index 22fad903..489ff52b 100644
--- a/src/DataDefinitionsBundle/Event/DefinitionEventInterface.php
+++ b/src/DataDefinitionsBundle/Event/DefinitionEventInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Event/EventDispatcher.php b/src/DataDefinitionsBundle/Event/EventDispatcher.php
index 7f72f591..7a367fd9 100644
--- a/src/DataDefinitionsBundle/Event/EventDispatcher.php
+++ b/src/DataDefinitionsBundle/Event/EventDispatcher.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Event/EventDispatcherInterface.php b/src/DataDefinitionsBundle/Event/EventDispatcherInterface.php
index f9c125da..52cb8990 100644
--- a/src/DataDefinitionsBundle/Event/EventDispatcherInterface.php
+++ b/src/DataDefinitionsBundle/Event/EventDispatcherInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Event/ExportDefinitionEvent.php b/src/DataDefinitionsBundle/Event/ExportDefinitionEvent.php
index 8744956d..e54acc0c 100644
--- a/src/DataDefinitionsBundle/Event/ExportDefinitionEvent.php
+++ b/src/DataDefinitionsBundle/Event/ExportDefinitionEvent.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Event/ImportDefinitionEvent.php b/src/DataDefinitionsBundle/Event/ImportDefinitionEvent.php
index 665b89f9..92d885d2 100644
--- a/src/DataDefinitionsBundle/Event/ImportDefinitionEvent.php
+++ b/src/DataDefinitionsBundle/Event/ImportDefinitionEvent.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/EventListener/ObjectDeleteListener.php b/src/DataDefinitionsBundle/EventListener/ObjectDeleteListener.php
index 453c4f71..2ab3f24e 100644
--- a/src/DataDefinitionsBundle/EventListener/ObjectDeleteListener.php
+++ b/src/DataDefinitionsBundle/EventListener/ObjectDeleteListener.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/EventListener/PimcoreSettingsListener.php b/src/DataDefinitionsBundle/EventListener/PimcoreSettingsListener.php
index 29c0bd30..b7d10131 100644
--- a/src/DataDefinitionsBundle/EventListener/PimcoreSettingsListener.php
+++ b/src/DataDefinitionsBundle/EventListener/PimcoreSettingsListener.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/EventListener/WriteableListener.php b/src/DataDefinitionsBundle/EventListener/WriteableListener.php
index c58d6169..23a74b79 100644
--- a/src/DataDefinitionsBundle/EventListener/WriteableListener.php
+++ b/src/DataDefinitionsBundle/EventListener/WriteableListener.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Exception/DoNotSetException.php b/src/DataDefinitionsBundle/Exception/DoNotSetException.php
index 3701f2e9..9da8049b 100644
--- a/src/DataDefinitionsBundle/Exception/DoNotSetException.php
+++ b/src/DataDefinitionsBundle/Exception/DoNotSetException.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Exception/InterpreterException.php b/src/DataDefinitionsBundle/Exception/InterpreterException.php
index 3ab9920a..3c3826a7 100644
--- a/src/DataDefinitionsBundle/Exception/InterpreterException.php
+++ b/src/DataDefinitionsBundle/Exception/InterpreterException.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Exception/SpoutException.php b/src/DataDefinitionsBundle/Exception/SpoutException.php
index bcfdd2a6..49456746 100644
--- a/src/DataDefinitionsBundle/Exception/SpoutException.php
+++ b/src/DataDefinitionsBundle/Exception/SpoutException.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Exception/UnexpectedValueException.php b/src/DataDefinitionsBundle/Exception/UnexpectedValueException.php
index f8e0d907..be371479 100644
--- a/src/DataDefinitionsBundle/Exception/UnexpectedValueException.php
+++ b/src/DataDefinitionsBundle/Exception/UnexpectedValueException.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Exporter/Exporter.php b/src/DataDefinitionsBundle/Exporter/Exporter.php
index 2485fee8..d914a85b 100644
--- a/src/DataDefinitionsBundle/Exporter/Exporter.php
+++ b/src/DataDefinitionsBundle/Exporter/Exporter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Exporter/ExporterInterface.php b/src/DataDefinitionsBundle/Exporter/ExporterInterface.php
index ad39a0bd..955ef5ba 100644
--- a/src/DataDefinitionsBundle/Exporter/ExporterInterface.php
+++ b/src/DataDefinitionsBundle/Exporter/ExporterInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Fetcher/FetcherInterface.php b/src/DataDefinitionsBundle/Fetcher/FetcherInterface.php
index 0648dbb4..a35b9620 100644
--- a/src/DataDefinitionsBundle/Fetcher/FetcherInterface.php
+++ b/src/DataDefinitionsBundle/Fetcher/FetcherInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Fetcher/ObjectsFetcher.php b/src/DataDefinitionsBundle/Fetcher/ObjectsFetcher.php
index a1b21190..a5971730 100644
--- a/src/DataDefinitionsBundle/Fetcher/ObjectsFetcher.php
+++ b/src/DataDefinitionsBundle/Fetcher/ObjectsFetcher.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Filter/FilterInterface.php b/src/DataDefinitionsBundle/Filter/FilterInterface.php
index 3b209560..ef667a0b 100644
--- a/src/DataDefinitionsBundle/Filter/FilterInterface.php
+++ b/src/DataDefinitionsBundle/Filter/FilterInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/DataMapper/DefinitionMappingDataMapper.php b/src/DataDefinitionsBundle/Form/DataMapper/DefinitionMappingDataMapper.php
index 7aed521f..b1e09889 100644
--- a/src/DataDefinitionsBundle/Form/DataMapper/DefinitionMappingDataMapper.php
+++ b/src/DataDefinitionsBundle/Form/DataMapper/DefinitionMappingDataMapper.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ClassChoiceType.php b/src/DataDefinitionsBundle/Form/Type/ClassChoiceType.php
index 4a634824..0b3031ab 100644
--- a/src/DataDefinitionsBundle/Form/Type/ClassChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ClassChoiceType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/CleanerChoiceType.php b/src/DataDefinitionsBundle/Form/Type/CleanerChoiceType.php
index 7af52ffe..4164e49a 100644
--- a/src/DataDefinitionsBundle/Form/Type/CleanerChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/CleanerChoiceType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/DefinitionChoiceType.php b/src/DataDefinitionsBundle/Form/Type/DefinitionChoiceType.php
index 3737312d..8129c855 100644
--- a/src/DataDefinitionsBundle/Form/Type/DefinitionChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/DefinitionChoiceType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ExportDefinitionType.php b/src/DataDefinitionsBundle/Form/Type/ExportDefinitionType.php
index 89420307..aaf96055 100644
--- a/src/DataDefinitionsBundle/Form/Type/ExportDefinitionType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ExportDefinitionType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ExportMappingCollectionType.php b/src/DataDefinitionsBundle/Form/Type/ExportMappingCollectionType.php
index 03b64b77..478eda0d 100644
--- a/src/DataDefinitionsBundle/Form/Type/ExportMappingCollectionType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ExportMappingCollectionType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ExportMappingType.php b/src/DataDefinitionsBundle/Form/Type/ExportMappingType.php
index 68247b96..0f46d623 100644
--- a/src/DataDefinitionsBundle/Form/Type/ExportMappingType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ExportMappingType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ExportProvider/CsvProviderType.php b/src/DataDefinitionsBundle/Form/Type/ExportProvider/CsvProviderType.php
index 052324f2..cfbad0d0 100644
--- a/src/DataDefinitionsBundle/Form/Type/ExportProvider/CsvProviderType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ExportProvider/CsvProviderType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ExportProvider/XmlProviderType.php b/src/DataDefinitionsBundle/Form/Type/ExportProvider/XmlProviderType.php
index 502468fb..d982b2fc 100644
--- a/src/DataDefinitionsBundle/Form/Type/ExportProvider/XmlProviderType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ExportProvider/XmlProviderType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ExportProviderChoiceType.php b/src/DataDefinitionsBundle/Form/Type/ExportProviderChoiceType.php
index 5b5c40cf..3f2a6add 100644
--- a/src/DataDefinitionsBundle/Form/Type/ExportProviderChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ExportProviderChoiceType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ExportRunnerChoiceType.php b/src/DataDefinitionsBundle/Form/Type/ExportRunnerChoiceType.php
index d1d7c478..4b164738 100644
--- a/src/DataDefinitionsBundle/Form/Type/ExportRunnerChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ExportRunnerChoiceType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Fetcher/ObjectsFetcherType.php b/src/DataDefinitionsBundle/Form/Type/Fetcher/ObjectsFetcherType.php
index 6b700437..939e8e40 100644
--- a/src/DataDefinitionsBundle/Form/Type/Fetcher/ObjectsFetcherType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Fetcher/ObjectsFetcherType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/FetcherChoiceType.php b/src/DataDefinitionsBundle/Form/Type/FetcherChoiceType.php
index d7f43ab3..461368ec 100644
--- a/src/DataDefinitionsBundle/Form/Type/FetcherChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/FetcherChoiceType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/FilterChoiceType.php b/src/DataDefinitionsBundle/Form/Type/FilterChoiceType.php
index c1372452..916fb427 100644
--- a/src/DataDefinitionsBundle/Form/Type/FilterChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/FilterChoiceType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportDefinitionType.php b/src/DataDefinitionsBundle/Form/Type/ImportDefinitionType.php
index 2b01a32a..3a390d69 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportDefinitionType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportDefinitionType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportMappingCollectionType.php b/src/DataDefinitionsBundle/Form/Type/ImportMappingCollectionType.php
index f49eae66..c5fd1795 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportMappingCollectionType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportMappingCollectionType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportMappingType.php b/src/DataDefinitionsBundle/Form/Type/ImportMappingType.php
index 979f87fb..f31b3449 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportMappingType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportMappingType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/CsvProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/CsvProviderType.php
index 2dcfddd7..32583dfd 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/CsvProviderType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/CsvProviderType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExcelProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExcelProviderType.php
index 114a266e..42efba8c 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExcelProviderType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExcelProviderType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExternalSqlProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExternalSqlProviderType.php
index d72422e4..208e5fe3 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExternalSqlProviderType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/ExternalSqlProviderType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/JsonProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/JsonProviderType.php
index 2b07b6ca..bfd3b25c 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/JsonProviderType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/JsonProviderType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/RawProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/RawProviderType.php
index 64a2dd4b..b0070012 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/RawProviderType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/RawProviderType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/SqlProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/SqlProviderType.php
index 2814cf6e..9747acb7 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/SqlProviderType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/SqlProviderType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProvider/XmlProviderType.php b/src/DataDefinitionsBundle/Form/Type/ImportProvider/XmlProviderType.php
index c1088d7a..4326dce4 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportProvider/XmlProviderType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportProvider/XmlProviderType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportProviderChoiceType.php b/src/DataDefinitionsBundle/Form/Type/ImportProviderChoiceType.php
index 18ee4562..374fe42d 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportProviderChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportProviderChoiceType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ImportRulesImportType.php b/src/DataDefinitionsBundle/Form/Type/ImportRulesImportType.php
index 030d1c3f..18641feb 100644
--- a/src/DataDefinitionsBundle/Form/Type/ImportRulesImportType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ImportRulesImportType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetByPathInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetByPathInterpreterType.php
index 08350969..a9a5e38d 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetByPathInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetByPathInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetUrlInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetUrlInterpreterType.php
index 2bcf7b1b..688a7a73 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetUrlInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetUrlInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetsUrlInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetsUrlInterpreterType.php
index b726768e..bdc2ee79 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetsUrlInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/AssetsUrlInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/CarbonInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/CarbonInterpreterType.php
index 81da3156..404ec6d1 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/CarbonInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/CarbonInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/ConditionalInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/ConditionalInterpreterType.php
index b6120d3d..cb286109 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/ConditionalInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/ConditionalInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/MoneyInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/MoneyInterpreterType.php
index b33ac2f7..c09adec2 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/MoneyInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/MoneyInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/PriceInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/PriceInterpreterType.php
index 9da10687..0d1d5832 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/PriceInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/PriceInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/StoresInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/StoresInterpreterType.php
index b593b74c..dc397da1 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/StoresInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/CoreShop/StoresInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/DefaultValueInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/DefaultValueInterpreterType.php
index dca2f2a4..dfaa6888 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/DefaultValueInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/DefaultValueInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/DefinitionType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/DefinitionType.php
index 4c319c7e..8f8aea89 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/DefinitionType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/DefinitionType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/ExpressionInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/ExpressionInterpreterType.php
index c9ebc151..38aeaa45 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/ExpressionInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/ExpressionInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/HrefInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/HrefInterpreterType.php
index 236a26e4..c3c2e648 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/HrefInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/HrefInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterCollectionType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterCollectionType.php
index e4e4c651..786867e9 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterCollectionType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterCollectionType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterType.php
index 3cac74f4..304c9a85 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/InterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/IteratorInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/IteratorInterpreterType.php
index c2f11b68..fddc91fd 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/IteratorInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/IteratorInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingInterpreterType.php
index 8e8ad5d0..cf2eed49 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingType.php
index ea095a89..fe2f12c9 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/MappingType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/MetadataInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/MetadataInterpreterType.php
index b6011fb4..8ce262bd 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/MetadataInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/MetadataInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/MultiHrefInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/MultiHrefInterpreterType.php
index bf2a0371..38110d44 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/MultiHrefInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/MultiHrefInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/NestedInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/NestedInterpreterType.php
index cd37e651..c901327e 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/NestedInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/NestedInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/ObjectResolverType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/ObjectResolverType.php
index dae58c95..2a0c134b 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/ObjectResolverType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/ObjectResolverType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/QuantityValueInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/QuantityValueInterpreterType.php
index c1028c78..7ebefda3 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/QuantityValueInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/QuantityValueInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/SpecificObjectInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/SpecificObjectInterpreterType.php
index 3d559f4f..252475df 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/SpecificObjectInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/SpecificObjectInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/TwigInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/TwigInterpreterType.php
index e36cbadc..7acf6994 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/TwigInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/TwigInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Interpreter/TypeCastingInterpreterType.php b/src/DataDefinitionsBundle/Form/Type/Interpreter/TypeCastingInterpreterType.php
index 1d3525d1..57113589 100644
--- a/src/DataDefinitionsBundle/Form/Type/Interpreter/TypeCastingInterpreterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Interpreter/TypeCastingInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/InterpreterChoiceType.php b/src/DataDefinitionsBundle/Form/Type/InterpreterChoiceType.php
index 6bd3daca..f95cefcf 100644
--- a/src/DataDefinitionsBundle/Form/Type/InterpreterChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/InterpreterChoiceType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/LoaderChoiceType.php b/src/DataDefinitionsBundle/Form/Type/LoaderChoiceType.php
index 13e5e32e..1d725571 100644
--- a/src/DataDefinitionsBundle/Form/Type/LoaderChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/LoaderChoiceType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/NoConfigurationType.php b/src/DataDefinitionsBundle/Form/Type/NoConfigurationType.php
index 4640b8fd..cc100580 100644
--- a/src/DataDefinitionsBundle/Form/Type/NoConfigurationType.php
+++ b/src/DataDefinitionsBundle/Form/Type/NoConfigurationType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/PersisterChoiceType.php b/src/DataDefinitionsBundle/Form/Type/PersisterChoiceType.php
index 4fa692ec..6652cbe3 100644
--- a/src/DataDefinitionsBundle/Form/Type/PersisterChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/PersisterChoiceType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ProcessManager/ExportDefinitionObjectStartupForm.php b/src/DataDefinitionsBundle/Form/Type/ProcessManager/ExportDefinitionObjectStartupForm.php
index 6c5d52a7..83821858 100644
--- a/src/DataDefinitionsBundle/Form/Type/ProcessManager/ExportDefinitionObjectStartupForm.php
+++ b/src/DataDefinitionsBundle/Form/Type/ProcessManager/ExportDefinitionObjectStartupForm.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/ProcessManager/ImportDefinitionsType.php b/src/DataDefinitionsBundle/Form/Type/ProcessManager/ImportDefinitionsType.php
index de1efb01..b8b873bd 100644
--- a/src/DataDefinitionsBundle/Form/Type/ProcessManager/ImportDefinitionsType.php
+++ b/src/DataDefinitionsBundle/Form/Type/ProcessManager/ImportDefinitionsType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/RunnerChoiceType.php b/src/DataDefinitionsBundle/Form/Type/RunnerChoiceType.php
index c2834dec..e673b336 100644
--- a/src/DataDefinitionsBundle/Form/Type/RunnerChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/RunnerChoiceType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Setter/ClassificationStoreSetterType.php b/src/DataDefinitionsBundle/Form/Type/Setter/ClassificationStoreSetterType.php
index a7c95c0d..fd042c00 100644
--- a/src/DataDefinitionsBundle/Form/Type/Setter/ClassificationStoreSetterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Setter/ClassificationStoreSetterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StorePriceSetterType.php b/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StorePriceSetterType.php
index e25d0474..deab04ac 100644
--- a/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StorePriceSetterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StorePriceSetterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StoreValuesSetterType.php b/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StoreValuesSetterType.php
index 453a9961..9ddd6466 100644
--- a/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StoreValuesSetterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Setter/CoreShop/StoreValuesSetterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Setter/FieldCollectionSetterType.php b/src/DataDefinitionsBundle/Form/Type/Setter/FieldCollectionSetterType.php
index 5cdf8793..0e954577 100644
--- a/src/DataDefinitionsBundle/Form/Type/Setter/FieldCollectionSetterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Setter/FieldCollectionSetterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Setter/LocalizedFieldSetterType.php b/src/DataDefinitionsBundle/Form/Type/Setter/LocalizedFieldSetterType.php
index a66e16f8..6ca66b56 100644
--- a/src/DataDefinitionsBundle/Form/Type/Setter/LocalizedFieldSetterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Setter/LocalizedFieldSetterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/Setter/ObjectBrickSetterType.php b/src/DataDefinitionsBundle/Form/Type/Setter/ObjectBrickSetterType.php
index 61fccccd..e50f2ea5 100644
--- a/src/DataDefinitionsBundle/Form/Type/Setter/ObjectBrickSetterType.php
+++ b/src/DataDefinitionsBundle/Form/Type/Setter/ObjectBrickSetterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Form/Type/SetterChoiceType.php b/src/DataDefinitionsBundle/Form/Type/SetterChoiceType.php
index 118cd016..3025682d 100644
--- a/src/DataDefinitionsBundle/Form/Type/SetterChoiceType.php
+++ b/src/DataDefinitionsBundle/Form/Type/SetterChoiceType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Getter/DynamicColumnGetterInterface.php b/src/DataDefinitionsBundle/Getter/DynamicColumnGetterInterface.php
index b695fbd1..5c9aa809 100644
--- a/src/DataDefinitionsBundle/Getter/DynamicColumnGetterInterface.php
+++ b/src/DataDefinitionsBundle/Getter/DynamicColumnGetterInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Getter/GetterInterface.php b/src/DataDefinitionsBundle/Getter/GetterInterface.php
index f9891c29..d54c6766 100644
--- a/src/DataDefinitionsBundle/Getter/GetterInterface.php
+++ b/src/DataDefinitionsBundle/Getter/GetterInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Importer/AsyncImporterInterface.php b/src/DataDefinitionsBundle/Importer/AsyncImporterInterface.php
index 165e5d56..03c4539b 100644
--- a/src/DataDefinitionsBundle/Importer/AsyncImporterInterface.php
+++ b/src/DataDefinitionsBundle/Importer/AsyncImporterInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Importer/Importer.php b/src/DataDefinitionsBundle/Importer/Importer.php
index b03b66e5..dfc10a56 100644
--- a/src/DataDefinitionsBundle/Importer/Importer.php
+++ b/src/DataDefinitionsBundle/Importer/Importer.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Importer/ImporterInterface.php b/src/DataDefinitionsBundle/Importer/ImporterInterface.php
index 3a72129f..bc14b2a4 100644
--- a/src/DataDefinitionsBundle/Importer/ImporterInterface.php
+++ b/src/DataDefinitionsBundle/Importer/ImporterInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Installer.php b/src/DataDefinitionsBundle/Installer.php
index 72e7bb07..1b5cb22e 100644
--- a/src/DataDefinitionsBundle/Installer.php
+++ b/src/DataDefinitionsBundle/Installer.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/AssetByPathInterpreter.php b/src/DataDefinitionsBundle/Interpreter/AssetByPathInterpreter.php
index 59e8ebe1..f93529fa 100644
--- a/src/DataDefinitionsBundle/Interpreter/AssetByPathInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/AssetByPathInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/AssetUrlInterpreter.php b/src/DataDefinitionsBundle/Interpreter/AssetUrlInterpreter.php
index e7a0f15b..ae66063a 100644
--- a/src/DataDefinitionsBundle/Interpreter/AssetUrlInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/AssetUrlInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/AssetsUrlInterpreter.php b/src/DataDefinitionsBundle/Interpreter/AssetsUrlInterpreter.php
index 73b7a18a..0461cdd7 100644
--- a/src/DataDefinitionsBundle/Interpreter/AssetsUrlInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/AssetsUrlInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/CarbonInterpreter.php b/src/DataDefinitionsBundle/Interpreter/CarbonInterpreter.php
index d91b5eda..7eb597ac 100644
--- a/src/DataDefinitionsBundle/Interpreter/CarbonInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/CarbonInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/CheckboxInterpreter.php b/src/DataDefinitionsBundle/Interpreter/CheckboxInterpreter.php
index 07c79a05..12b1f4b0 100644
--- a/src/DataDefinitionsBundle/Interpreter/CheckboxInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/CheckboxInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/ConditionalInterpreter.php b/src/DataDefinitionsBundle/Interpreter/ConditionalInterpreter.php
index 248dcc19..d889b1bc 100644
--- a/src/DataDefinitionsBundle/Interpreter/ConditionalInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/ConditionalInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/CoreShop/CurrencyInterpreter.php b/src/DataDefinitionsBundle/Interpreter/CoreShop/CurrencyInterpreter.php
index 1f96b004..bab8de7d 100644
--- a/src/DataDefinitionsBundle/Interpreter/CoreShop/CurrencyInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/CoreShop/CurrencyInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/CoreShop/MoneyInterpreter.php b/src/DataDefinitionsBundle/Interpreter/CoreShop/MoneyInterpreter.php
index 9fd54bce..8ee70725 100644
--- a/src/DataDefinitionsBundle/Interpreter/CoreShop/MoneyInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/CoreShop/MoneyInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/CoreShop/PriceInterpreter.php b/src/DataDefinitionsBundle/Interpreter/CoreShop/PriceInterpreter.php
index 5b67d40d..633f3df5 100644
--- a/src/DataDefinitionsBundle/Interpreter/CoreShop/PriceInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/CoreShop/PriceInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/CoreShop/StoresInterpreter.php b/src/DataDefinitionsBundle/Interpreter/CoreShop/StoresInterpreter.php
index 28458c41..cb875960 100644
--- a/src/DataDefinitionsBundle/Interpreter/CoreShop/StoresInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/CoreShop/StoresInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/DefaultValueInterpreter.php b/src/DataDefinitionsBundle/Interpreter/DefaultValueInterpreter.php
index f7bc9000..f919c1d8 100644
--- a/src/DataDefinitionsBundle/Interpreter/DefaultValueInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/DefaultValueInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/DefinitionInterpreter.php b/src/DataDefinitionsBundle/Interpreter/DefinitionInterpreter.php
index 78e74e26..d0731b67 100644
--- a/src/DataDefinitionsBundle/Interpreter/DefinitionInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/DefinitionInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/DoNotSetOnEmptyInterpreter.php b/src/DataDefinitionsBundle/Interpreter/DoNotSetOnEmptyInterpreter.php
index 610289dd..c9c76367 100644
--- a/src/DataDefinitionsBundle/Interpreter/DoNotSetOnEmptyInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/DoNotSetOnEmptyInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/ExpressionInterpreter.php b/src/DataDefinitionsBundle/Interpreter/ExpressionInterpreter.php
index 1b142b3d..14296c48 100644
--- a/src/DataDefinitionsBundle/Interpreter/ExpressionInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/ExpressionInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/ExternalImageInterpreter.php b/src/DataDefinitionsBundle/Interpreter/ExternalImageInterpreter.php
index 2a7777e7..11f299d2 100644
--- a/src/DataDefinitionsBundle/Interpreter/ExternalImageInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/ExternalImageInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/HrefInterpreter.php b/src/DataDefinitionsBundle/Interpreter/HrefInterpreter.php
index 88ddcb45..72f97571 100644
--- a/src/DataDefinitionsBundle/Interpreter/HrefInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/HrefInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/ImportRuleInterpreter.php b/src/DataDefinitionsBundle/Interpreter/ImportRuleInterpreter.php
index 715fe438..0a3165ff 100644
--- a/src/DataDefinitionsBundle/Interpreter/ImportRuleInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/ImportRuleInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/InterpreterInterface.php b/src/DataDefinitionsBundle/Interpreter/InterpreterInterface.php
index 92ee8fdc..b14c3d86 100644
--- a/src/DataDefinitionsBundle/Interpreter/InterpreterInterface.php
+++ b/src/DataDefinitionsBundle/Interpreter/InterpreterInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/IteratorInterpreter.php b/src/DataDefinitionsBundle/Interpreter/IteratorInterpreter.php
index 6ea9a6ea..eb3ef966 100644
--- a/src/DataDefinitionsBundle/Interpreter/IteratorInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/IteratorInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/LinkInterpreter.php b/src/DataDefinitionsBundle/Interpreter/LinkInterpreter.php
index 78429009..ac78bb05 100644
--- a/src/DataDefinitionsBundle/Interpreter/LinkInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/LinkInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/MappingInterpreter.php b/src/DataDefinitionsBundle/Interpreter/MappingInterpreter.php
index 8347df2b..54ef1fef 100644
--- a/src/DataDefinitionsBundle/Interpreter/MappingInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/MappingInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/MetadataInterpreter.php b/src/DataDefinitionsBundle/Interpreter/MetadataInterpreter.php
index 2bc8fab3..a31f482c 100644
--- a/src/DataDefinitionsBundle/Interpreter/MetadataInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/MetadataInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/MultiHrefInterpreter.php b/src/DataDefinitionsBundle/Interpreter/MultiHrefInterpreter.php
index 892af441..72bc1529 100644
--- a/src/DataDefinitionsBundle/Interpreter/MultiHrefInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/MultiHrefInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/NestedInterpreter.php b/src/DataDefinitionsBundle/Interpreter/NestedInterpreter.php
index c3735e19..245f741a 100644
--- a/src/DataDefinitionsBundle/Interpreter/NestedInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/NestedInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/ObjectResolverInterpreter.php b/src/DataDefinitionsBundle/Interpreter/ObjectResolverInterpreter.php
index 4261dd4e..9e7be71c 100644
--- a/src/DataDefinitionsBundle/Interpreter/ObjectResolverInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/ObjectResolverInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/QuantityValueInterpreter.php b/src/DataDefinitionsBundle/Interpreter/QuantityValueInterpreter.php
index 6230d0a0..689277e9 100644
--- a/src/DataDefinitionsBundle/Interpreter/QuantityValueInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/QuantityValueInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/SpecificObjectInterpreter.php b/src/DataDefinitionsBundle/Interpreter/SpecificObjectInterpreter.php
index e9b45108..c32c45e3 100644
--- a/src/DataDefinitionsBundle/Interpreter/SpecificObjectInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/SpecificObjectInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/TwigInterpreter.php b/src/DataDefinitionsBundle/Interpreter/TwigInterpreter.php
index 0d6f776d..a49902b1 100644
--- a/src/DataDefinitionsBundle/Interpreter/TwigInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/TwigInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Interpreter/TypeCastingInterpreter.php b/src/DataDefinitionsBundle/Interpreter/TypeCastingInterpreter.php
index 7cc1c225..fd14b6fb 100644
--- a/src/DataDefinitionsBundle/Interpreter/TypeCastingInterpreter.php
+++ b/src/DataDefinitionsBundle/Interpreter/TypeCastingInterpreter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Loader/LoaderInterface.php b/src/DataDefinitionsBundle/Loader/LoaderInterface.php
index f392b5a4..d5c0c292 100644
--- a/src/DataDefinitionsBundle/Loader/LoaderInterface.php
+++ b/src/DataDefinitionsBundle/Loader/LoaderInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Loader/PrimaryKeyLoader.php b/src/DataDefinitionsBundle/Loader/PrimaryKeyLoader.php
index 3c5270cb..60bffff3 100644
--- a/src/DataDefinitionsBundle/Loader/PrimaryKeyLoader.php
+++ b/src/DataDefinitionsBundle/Loader/PrimaryKeyLoader.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Messenger/ImportRowMessage.php b/src/DataDefinitionsBundle/Messenger/ImportRowMessage.php
index c076a0d1..77b3a516 100644
--- a/src/DataDefinitionsBundle/Messenger/ImportRowMessage.php
+++ b/src/DataDefinitionsBundle/Messenger/ImportRowMessage.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Messenger/ImportRowMessageHandler.php b/src/DataDefinitionsBundle/Messenger/ImportRowMessageHandler.php
index 38001010..6d52a930 100644
--- a/src/DataDefinitionsBundle/Messenger/ImportRowMessageHandler.php
+++ b/src/DataDefinitionsBundle/Messenger/ImportRowMessageHandler.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/AbstractColumn.php b/src/DataDefinitionsBundle/Model/AbstractColumn.php
index 03ffebe8..7a279ae8 100644
--- a/src/DataDefinitionsBundle/Model/AbstractColumn.php
+++ b/src/DataDefinitionsBundle/Model/AbstractColumn.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/AbstractDataDefinition.php b/src/DataDefinitionsBundle/Model/AbstractDataDefinition.php
index bc33f31e..a0652494 100644
--- a/src/DataDefinitionsBundle/Model/AbstractDataDefinition.php
+++ b/src/DataDefinitionsBundle/Model/AbstractDataDefinition.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/AbstractMapping.php b/src/DataDefinitionsBundle/Model/AbstractMapping.php
index 35d80f7c..66ab21ce 100644
--- a/src/DataDefinitionsBundle/Model/AbstractMapping.php
+++ b/src/DataDefinitionsBundle/Model/AbstractMapping.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/DataDefinitionInterface.php b/src/DataDefinitionsBundle/Model/DataDefinitionInterface.php
index f9981972..0691a978 100644
--- a/src/DataDefinitionsBundle/Model/DataDefinitionInterface.php
+++ b/src/DataDefinitionsBundle/Model/DataDefinitionInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/DataSetAwareTrait.php b/src/DataDefinitionsBundle/Model/DataSetAwareTrait.php
index 6fa1b3ff..77a63974 100644
--- a/src/DataDefinitionsBundle/Model/DataSetAwareTrait.php
+++ b/src/DataDefinitionsBundle/Model/DataSetAwareTrait.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/ExportDefinition.php b/src/DataDefinitionsBundle/Model/ExportDefinition.php
index 895a014d..775f63d1 100644
--- a/src/DataDefinitionsBundle/Model/ExportDefinition.php
+++ b/src/DataDefinitionsBundle/Model/ExportDefinition.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/ExportDefinition/Dao.php b/src/DataDefinitionsBundle/Model/ExportDefinition/Dao.php
index 4f1ff5b7..0039b1a5 100644
--- a/src/DataDefinitionsBundle/Model/ExportDefinition/Dao.php
+++ b/src/DataDefinitionsBundle/Model/ExportDefinition/Dao.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/ExportDefinition/Listing.php b/src/DataDefinitionsBundle/Model/ExportDefinition/Listing.php
index 3af44d8e..6a382206 100644
--- a/src/DataDefinitionsBundle/Model/ExportDefinition/Listing.php
+++ b/src/DataDefinitionsBundle/Model/ExportDefinition/Listing.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/ExportDefinition/Listing/Dao.php b/src/DataDefinitionsBundle/Model/ExportDefinition/Listing/Dao.php
index bb7e98bf..0c2f1c70 100644
--- a/src/DataDefinitionsBundle/Model/ExportDefinition/Listing/Dao.php
+++ b/src/DataDefinitionsBundle/Model/ExportDefinition/Listing/Dao.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/ExportDefinitionInterface.php b/src/DataDefinitionsBundle/Model/ExportDefinitionInterface.php
index 826604ae..bc0d8682 100644
--- a/src/DataDefinitionsBundle/Model/ExportDefinitionInterface.php
+++ b/src/DataDefinitionsBundle/Model/ExportDefinitionInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/ExportMapping.php b/src/DataDefinitionsBundle/Model/ExportMapping.php
index 7f18ee14..8963e531 100644
--- a/src/DataDefinitionsBundle/Model/ExportMapping.php
+++ b/src/DataDefinitionsBundle/Model/ExportMapping.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/ExportMapping/FromColumn.php b/src/DataDefinitionsBundle/Model/ExportMapping/FromColumn.php
index 719f9c17..41e67168 100644
--- a/src/DataDefinitionsBundle/Model/ExportMapping/FromColumn.php
+++ b/src/DataDefinitionsBundle/Model/ExportMapping/FromColumn.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/ExportMapping/ToColumn.php b/src/DataDefinitionsBundle/Model/ExportMapping/ToColumn.php
index ae843857..ef907f73 100644
--- a/src/DataDefinitionsBundle/Model/ExportMapping/ToColumn.php
+++ b/src/DataDefinitionsBundle/Model/ExportMapping/ToColumn.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/IdGenerator.php b/src/DataDefinitionsBundle/Model/IdGenerator.php
index 4cfddf00..682caf86 100644
--- a/src/DataDefinitionsBundle/Model/IdGenerator.php
+++ b/src/DataDefinitionsBundle/Model/IdGenerator.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/ImportDefinition.php b/src/DataDefinitionsBundle/Model/ImportDefinition.php
index 7fb787a2..9e5668fb 100644
--- a/src/DataDefinitionsBundle/Model/ImportDefinition.php
+++ b/src/DataDefinitionsBundle/Model/ImportDefinition.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/ImportDefinition/Dao.php b/src/DataDefinitionsBundle/Model/ImportDefinition/Dao.php
index 44536695..b37a03ae 100644
--- a/src/DataDefinitionsBundle/Model/ImportDefinition/Dao.php
+++ b/src/DataDefinitionsBundle/Model/ImportDefinition/Dao.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/ImportDefinition/Listing.php b/src/DataDefinitionsBundle/Model/ImportDefinition/Listing.php
index aee9024b..b8835ea5 100644
--- a/src/DataDefinitionsBundle/Model/ImportDefinition/Listing.php
+++ b/src/DataDefinitionsBundle/Model/ImportDefinition/Listing.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/ImportDefinition/Listing/Dao.php b/src/DataDefinitionsBundle/Model/ImportDefinition/Listing/Dao.php
index 9b466ea9..e38d2deb 100644
--- a/src/DataDefinitionsBundle/Model/ImportDefinition/Listing/Dao.php
+++ b/src/DataDefinitionsBundle/Model/ImportDefinition/Listing/Dao.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/ImportDefinitionInterface.php b/src/DataDefinitionsBundle/Model/ImportDefinitionInterface.php
index 4b1e1820..fbd71aef 100644
--- a/src/DataDefinitionsBundle/Model/ImportDefinitionInterface.php
+++ b/src/DataDefinitionsBundle/Model/ImportDefinitionInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/ImportMapping.php b/src/DataDefinitionsBundle/Model/ImportMapping.php
index 915edb72..3ea83c38 100644
--- a/src/DataDefinitionsBundle/Model/ImportMapping.php
+++ b/src/DataDefinitionsBundle/Model/ImportMapping.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/ImportMapping/FromColumn.php b/src/DataDefinitionsBundle/Model/ImportMapping/FromColumn.php
index 9628999a..59bee11b 100644
--- a/src/DataDefinitionsBundle/Model/ImportMapping/FromColumn.php
+++ b/src/DataDefinitionsBundle/Model/ImportMapping/FromColumn.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/ImportMapping/ToColumn.php b/src/DataDefinitionsBundle/Model/ImportMapping/ToColumn.php
index d4ee4aac..2fd6c5fe 100644
--- a/src/DataDefinitionsBundle/Model/ImportMapping/ToColumn.php
+++ b/src/DataDefinitionsBundle/Model/ImportMapping/ToColumn.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/Log.php b/src/DataDefinitionsBundle/Model/Log.php
index ddd93989..1e11bbc1 100644
--- a/src/DataDefinitionsBundle/Model/Log.php
+++ b/src/DataDefinitionsBundle/Model/Log.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/Log/Dao.php b/src/DataDefinitionsBundle/Model/Log/Dao.php
index 7a52c70d..54876c86 100644
--- a/src/DataDefinitionsBundle/Model/Log/Dao.php
+++ b/src/DataDefinitionsBundle/Model/Log/Dao.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/Log/Listing.php b/src/DataDefinitionsBundle/Model/Log/Listing.php
index 3cce2da8..c5dfbff3 100644
--- a/src/DataDefinitionsBundle/Model/Log/Listing.php
+++ b/src/DataDefinitionsBundle/Model/Log/Listing.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/Log/Listing/Dao.php b/src/DataDefinitionsBundle/Model/Log/Listing/Dao.php
index 45baace0..7d3d57ce 100644
--- a/src/DataDefinitionsBundle/Model/Log/Listing/Dao.php
+++ b/src/DataDefinitionsBundle/Model/Log/Listing/Dao.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/MappingInterface.php b/src/DataDefinitionsBundle/Model/MappingInterface.php
index 6455f671..e434e195 100644
--- a/src/DataDefinitionsBundle/Model/MappingInterface.php
+++ b/src/DataDefinitionsBundle/Model/MappingInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/ParamsAwareInterface.php b/src/DataDefinitionsBundle/Model/ParamsAwareInterface.php
index 00b36445..a4ecf38d 100644
--- a/src/DataDefinitionsBundle/Model/ParamsAwareInterface.php
+++ b/src/DataDefinitionsBundle/Model/ParamsAwareInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Model/ParamsAwareTrait.php b/src/DataDefinitionsBundle/Model/ParamsAwareTrait.php
index 5bb00e30..d1005907 100644
--- a/src/DataDefinitionsBundle/Model/ParamsAwareTrait.php
+++ b/src/DataDefinitionsBundle/Model/ParamsAwareTrait.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Persister/Persister.php b/src/DataDefinitionsBundle/Persister/Persister.php
index 190d7aaf..7cf82fce 100644
--- a/src/DataDefinitionsBundle/Persister/Persister.php
+++ b/src/DataDefinitionsBundle/Persister/Persister.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Persister/PersisterInterface.php b/src/DataDefinitionsBundle/Persister/PersisterInterface.php
index 96225674..4bc043a9 100644
--- a/src/DataDefinitionsBundle/Persister/PersisterInterface.php
+++ b/src/DataDefinitionsBundle/Persister/PersisterInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/ProcessManager/AbstractProcessManagerListener.php b/src/DataDefinitionsBundle/ProcessManager/AbstractProcessManagerListener.php
index bfb38288..fcc4015d 100644
--- a/src/DataDefinitionsBundle/ProcessManager/AbstractProcessManagerListener.php
+++ b/src/DataDefinitionsBundle/ProcessManager/AbstractProcessManagerListener.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/ProcessManager/ArtifactGenerationProviderInterface.php b/src/DataDefinitionsBundle/ProcessManager/ArtifactGenerationProviderInterface.php
index 982fff60..d1ab3f8e 100644
--- a/src/DataDefinitionsBundle/ProcessManager/ArtifactGenerationProviderInterface.php
+++ b/src/DataDefinitionsBundle/ProcessManager/ArtifactGenerationProviderInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/ProcessManager/ArtifactProviderTrait.php b/src/DataDefinitionsBundle/ProcessManager/ArtifactProviderTrait.php
index e64fa8f4..23def572 100644
--- a/src/DataDefinitionsBundle/ProcessManager/ArtifactProviderTrait.php
+++ b/src/DataDefinitionsBundle/ProcessManager/ArtifactProviderTrait.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/ProcessManager/DataDefinitionProcessTrait.php b/src/DataDefinitionsBundle/ProcessManager/DataDefinitionProcessTrait.php
index 494a879f..61fa0bc9 100644
--- a/src/DataDefinitionsBundle/ProcessManager/DataDefinitionProcessTrait.php
+++ b/src/DataDefinitionsBundle/ProcessManager/DataDefinitionProcessTrait.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/ProcessManager/ExportDefinitionProcess.php b/src/DataDefinitionsBundle/ProcessManager/ExportDefinitionProcess.php
index 4394b220..6ecd3ba6 100644
--- a/src/DataDefinitionsBundle/ProcessManager/ExportDefinitionProcess.php
+++ b/src/DataDefinitionsBundle/ProcessManager/ExportDefinitionProcess.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/ProcessManager/ExportDefinitionStartupFormResolver.php b/src/DataDefinitionsBundle/ProcessManager/ExportDefinitionStartupFormResolver.php
index dbce21ab..89661184 100644
--- a/src/DataDefinitionsBundle/ProcessManager/ExportDefinitionStartupFormResolver.php
+++ b/src/DataDefinitionsBundle/ProcessManager/ExportDefinitionStartupFormResolver.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/ProcessManager/ImportDefinitionProcess.php b/src/DataDefinitionsBundle/ProcessManager/ImportDefinitionProcess.php
index fc9a778e..0747784d 100644
--- a/src/DataDefinitionsBundle/ProcessManager/ImportDefinitionProcess.php
+++ b/src/DataDefinitionsBundle/ProcessManager/ImportDefinitionProcess.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/ProcessManager/ImportDefinitionsReport.php b/src/DataDefinitionsBundle/ProcessManager/ImportDefinitionsReport.php
index 6b47e1c1..92504c6c 100644
--- a/src/DataDefinitionsBundle/ProcessManager/ImportDefinitionsReport.php
+++ b/src/DataDefinitionsBundle/ProcessManager/ImportDefinitionsReport.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/ProcessManager/ProcessManagerExportListener.php b/src/DataDefinitionsBundle/ProcessManager/ProcessManagerExportListener.php
index d1378ac7..48b8bb01 100644
--- a/src/DataDefinitionsBundle/ProcessManager/ProcessManagerExportListener.php
+++ b/src/DataDefinitionsBundle/ProcessManager/ProcessManagerExportListener.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/ProcessManager/ProcessManagerImportListener.php b/src/DataDefinitionsBundle/ProcessManager/ProcessManagerImportListener.php
index ad199f0d..8ec0438f 100644
--- a/src/DataDefinitionsBundle/ProcessManager/ProcessManagerImportListener.php
+++ b/src/DataDefinitionsBundle/ProcessManager/ProcessManagerImportListener.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Provider/AbstractFileProvider.php b/src/DataDefinitionsBundle/Provider/AbstractFileProvider.php
index 6b9344f6..edeee501 100644
--- a/src/DataDefinitionsBundle/Provider/AbstractFileProvider.php
+++ b/src/DataDefinitionsBundle/Provider/AbstractFileProvider.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Provider/AbstractSqlProvider.php b/src/DataDefinitionsBundle/Provider/AbstractSqlProvider.php
index 303bfef5..fa118a0d 100644
--- a/src/DataDefinitionsBundle/Provider/AbstractSqlProvider.php
+++ b/src/DataDefinitionsBundle/Provider/AbstractSqlProvider.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Provider/ArrayImportDataSet.php b/src/DataDefinitionsBundle/Provider/ArrayImportDataSet.php
index d5888117..2bc8545c 100644
--- a/src/DataDefinitionsBundle/Provider/ArrayImportDataSet.php
+++ b/src/DataDefinitionsBundle/Provider/ArrayImportDataSet.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Provider/CsvProvider.php b/src/DataDefinitionsBundle/Provider/CsvProvider.php
index ea66476d..e08d0327 100644
--- a/src/DataDefinitionsBundle/Provider/CsvProvider.php
+++ b/src/DataDefinitionsBundle/Provider/CsvProvider.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Provider/ExcelProvider.php b/src/DataDefinitionsBundle/Provider/ExcelProvider.php
index afce7c8c..85d2c3c6 100644
--- a/src/DataDefinitionsBundle/Provider/ExcelProvider.php
+++ b/src/DataDefinitionsBundle/Provider/ExcelProvider.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Provider/ExportProviderInterface.php b/src/DataDefinitionsBundle/Provider/ExportProviderInterface.php
index 97e9127d..822d337c 100644
--- a/src/DataDefinitionsBundle/Provider/ExportProviderInterface.php
+++ b/src/DataDefinitionsBundle/Provider/ExportProviderInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Provider/ExternalSqlProvider.php b/src/DataDefinitionsBundle/Provider/ExternalSqlProvider.php
index bfe20032..5430f17b 100644
--- a/src/DataDefinitionsBundle/Provider/ExternalSqlProvider.php
+++ b/src/DataDefinitionsBundle/Provider/ExternalSqlProvider.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Provider/ImportDataSet.php b/src/DataDefinitionsBundle/Provider/ImportDataSet.php
index b3295c37..730e5f6d 100644
--- a/src/DataDefinitionsBundle/Provider/ImportDataSet.php
+++ b/src/DataDefinitionsBundle/Provider/ImportDataSet.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Provider/ImportDataSetInterface.php b/src/DataDefinitionsBundle/Provider/ImportDataSetInterface.php
index 07fe0a19..8ebe9e65 100644
--- a/src/DataDefinitionsBundle/Provider/ImportDataSetInterface.php
+++ b/src/DataDefinitionsBundle/Provider/ImportDataSetInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Provider/ImportProviderInterface.php b/src/DataDefinitionsBundle/Provider/ImportProviderInterface.php
index 7ea33f75..003aeb07 100644
--- a/src/DataDefinitionsBundle/Provider/ImportProviderInterface.php
+++ b/src/DataDefinitionsBundle/Provider/ImportProviderInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Provider/JsonProvider.php b/src/DataDefinitionsBundle/Provider/JsonProvider.php
index 56ee243f..451640d7 100644
--- a/src/DataDefinitionsBundle/Provider/JsonProvider.php
+++ b/src/DataDefinitionsBundle/Provider/JsonProvider.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Provider/RawProvider.php b/src/DataDefinitionsBundle/Provider/RawProvider.php
index dd444a22..0cf8548d 100644
--- a/src/DataDefinitionsBundle/Provider/RawProvider.php
+++ b/src/DataDefinitionsBundle/Provider/RawProvider.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Provider/SqlProvider.php b/src/DataDefinitionsBundle/Provider/SqlProvider.php
index 9d693841..09268e96 100644
--- a/src/DataDefinitionsBundle/Provider/SqlProvider.php
+++ b/src/DataDefinitionsBundle/Provider/SqlProvider.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Provider/TraversableImportDataSet.php b/src/DataDefinitionsBundle/Provider/TraversableImportDataSet.php
index b8168d26..60e82940 100644
--- a/src/DataDefinitionsBundle/Provider/TraversableImportDataSet.php
+++ b/src/DataDefinitionsBundle/Provider/TraversableImportDataSet.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Provider/XmlProvider.php b/src/DataDefinitionsBundle/Provider/XmlProvider.php
index 2a49c4cc..3a46b5a2 100755
--- a/src/DataDefinitionsBundle/Provider/XmlProvider.php
+++ b/src/DataDefinitionsBundle/Provider/XmlProvider.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Repository/DefinitionRepository.php b/src/DataDefinitionsBundle/Repository/DefinitionRepository.php
index e20dbf8e..4145f799 100644
--- a/src/DataDefinitionsBundle/Repository/DefinitionRepository.php
+++ b/src/DataDefinitionsBundle/Repository/DefinitionRepository.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Action/ExpressionProcessor.php b/src/DataDefinitionsBundle/Rules/Action/ExpressionProcessor.php
index 55c71e07..6215e601 100644
--- a/src/DataDefinitionsBundle/Rules/Action/ExpressionProcessor.php
+++ b/src/DataDefinitionsBundle/Rules/Action/ExpressionProcessor.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Action/ImportRuleProcessorInterface.php b/src/DataDefinitionsBundle/Rules/Action/ImportRuleProcessorInterface.php
index f8c668e3..3e1cdc5c 100644
--- a/src/DataDefinitionsBundle/Rules/Action/ImportRuleProcessorInterface.php
+++ b/src/DataDefinitionsBundle/Rules/Action/ImportRuleProcessorInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Action/ObjectProcessor.php b/src/DataDefinitionsBundle/Rules/Action/ObjectProcessor.php
index 27c90519..4ca6d995 100644
--- a/src/DataDefinitionsBundle/Rules/Action/ObjectProcessor.php
+++ b/src/DataDefinitionsBundle/Rules/Action/ObjectProcessor.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Condition/AbstractConditionChecker.php b/src/DataDefinitionsBundle/Rules/Condition/AbstractConditionChecker.php
index 2791aa97..3fd88236 100644
--- a/src/DataDefinitionsBundle/Rules/Condition/AbstractConditionChecker.php
+++ b/src/DataDefinitionsBundle/Rules/Condition/AbstractConditionChecker.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Condition/ExpressionConditionChecker.php b/src/DataDefinitionsBundle/Rules/Condition/ExpressionConditionChecker.php
index b8f7e13c..54af0860 100644
--- a/src/DataDefinitionsBundle/Rules/Condition/ExpressionConditionChecker.php
+++ b/src/DataDefinitionsBundle/Rules/Condition/ExpressionConditionChecker.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Condition/ImportRuleConditionCheckerInterface.php b/src/DataDefinitionsBundle/Rules/Condition/ImportRuleConditionCheckerInterface.php
index 2b88b967..183fda2d 100644
--- a/src/DataDefinitionsBundle/Rules/Condition/ImportRuleConditionCheckerInterface.php
+++ b/src/DataDefinitionsBundle/Rules/Condition/ImportRuleConditionCheckerInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/Action/ExpressionType.php b/src/DataDefinitionsBundle/Rules/Form/Type/Action/ExpressionType.php
index 9623a29c..c081d714 100644
--- a/src/DataDefinitionsBundle/Rules/Form/Type/Action/ExpressionType.php
+++ b/src/DataDefinitionsBundle/Rules/Form/Type/Action/ExpressionType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/Action/ObjectType.php b/src/DataDefinitionsBundle/Rules/Form/Type/Action/ObjectType.php
index afa7166d..96e6a77c 100644
--- a/src/DataDefinitionsBundle/Rules/Form/Type/Action/ObjectType.php
+++ b/src/DataDefinitionsBundle/Rules/Form/Type/Action/ObjectType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/Condition/ExpressionConditionType.php b/src/DataDefinitionsBundle/Rules/Form/Type/Condition/ExpressionConditionType.php
index 6767ec9f..6a5f161c 100644
--- a/src/DataDefinitionsBundle/Rules/Form/Type/Condition/ExpressionConditionType.php
+++ b/src/DataDefinitionsBundle/Rules/Form/Type/Condition/ExpressionConditionType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionChoiceType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionChoiceType.php
index e7b20f23..82e69d9d 100755
--- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionChoiceType.php
+++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionChoiceType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionCollectionType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionCollectionType.php
index 069a7764..2dc42ad7 100755
--- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionCollectionType.php
+++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionCollectionType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionType.php
index 3c959c1b..87b3770a 100755
--- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionType.php
+++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleActionType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionChoiceType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionChoiceType.php
index 1367b8f2..95a6f7a5 100755
--- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionChoiceType.php
+++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionChoiceType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionCollectionType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionCollectionType.php
index fede1073..f2bc870f 100644
--- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionCollectionType.php
+++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionCollectionType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionType.php
index d9a4ec28..f3a8b48d 100755
--- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionType.php
+++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleConditionType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleType.php
index 7f04b8cc..9d64bb6d 100644
--- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleType.php
+++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRuleType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRulesInterpreterType.php b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRulesInterpreterType.php
index b5edf792..d4d6fdd5 100644
--- a/src/DataDefinitionsBundle/Rules/Form/Type/ImportRulesInterpreterType.php
+++ b/src/DataDefinitionsBundle/Rules/Form/Type/ImportRulesInterpreterType.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Model/ImportRule.php b/src/DataDefinitionsBundle/Rules/Model/ImportRule.php
index 61c4602d..f6b1f8be 100644
--- a/src/DataDefinitionsBundle/Rules/Model/ImportRule.php
+++ b/src/DataDefinitionsBundle/Rules/Model/ImportRule.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Model/ImportRuleInterface.php b/src/DataDefinitionsBundle/Rules/Model/ImportRuleInterface.php
index 5f67b5fb..1be0951d 100644
--- a/src/DataDefinitionsBundle/Rules/Model/ImportRuleInterface.php
+++ b/src/DataDefinitionsBundle/Rules/Model/ImportRuleInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessor.php b/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessor.php
index 5bebc269..13952838 100644
--- a/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessor.php
+++ b/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessor.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessorInterface.php b/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessorInterface.php
index 51b1a74c..1ef9e633 100644
--- a/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessorInterface.php
+++ b/src/DataDefinitionsBundle/Rules/Processor/ImportRuleValidationProcessorInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Processor/RuleApplier.php b/src/DataDefinitionsBundle/Rules/Processor/RuleApplier.php
index d41e35de..7309a488 100644
--- a/src/DataDefinitionsBundle/Rules/Processor/RuleApplier.php
+++ b/src/DataDefinitionsBundle/Rules/Processor/RuleApplier.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Rules/Processor/RuleApplierInterface.php b/src/DataDefinitionsBundle/Rules/Processor/RuleApplierInterface.php
index 29a17a27..0b545d02 100644
--- a/src/DataDefinitionsBundle/Rules/Processor/RuleApplierInterface.php
+++ b/src/DataDefinitionsBundle/Rules/Processor/RuleApplierInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Runner/ExportRunnerInterface.php b/src/DataDefinitionsBundle/Runner/ExportRunnerInterface.php
index fb60c880..5de721cb 100644
--- a/src/DataDefinitionsBundle/Runner/ExportRunnerInterface.php
+++ b/src/DataDefinitionsBundle/Runner/ExportRunnerInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Runner/ImportStartFinishRunnerInterface.php b/src/DataDefinitionsBundle/Runner/ImportStartFinishRunnerInterface.php
index b7f7fe4d..c23398c1 100644
--- a/src/DataDefinitionsBundle/Runner/ImportStartFinishRunnerInterface.php
+++ b/src/DataDefinitionsBundle/Runner/ImportStartFinishRunnerInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Runner/RunnerInterface.php b/src/DataDefinitionsBundle/Runner/RunnerInterface.php
index f57a3d31..db2cbbfe 100644
--- a/src/DataDefinitionsBundle/Runner/RunnerInterface.php
+++ b/src/DataDefinitionsBundle/Runner/RunnerInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Runner/SaveRunnerInterface.php b/src/DataDefinitionsBundle/Runner/SaveRunnerInterface.php
index 7cb03f1c..f450ba37 100644
--- a/src/DataDefinitionsBundle/Runner/SaveRunnerInterface.php
+++ b/src/DataDefinitionsBundle/Runner/SaveRunnerInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Runner/SetterRunnerInterface.php b/src/DataDefinitionsBundle/Runner/SetterRunnerInterface.php
index f1d3902b..8c5d346f 100644
--- a/src/DataDefinitionsBundle/Runner/SetterRunnerInterface.php
+++ b/src/DataDefinitionsBundle/Runner/SetterRunnerInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Service/FieldSelection.php b/src/DataDefinitionsBundle/Service/FieldSelection.php
index 5cfb2a4b..af60ef4e 100644
--- a/src/DataDefinitionsBundle/Service/FieldSelection.php
+++ b/src/DataDefinitionsBundle/Service/FieldSelection.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Service/StorageLocator.php b/src/DataDefinitionsBundle/Service/StorageLocator.php
index 54f12e06..9b998873 100644
--- a/src/DataDefinitionsBundle/Service/StorageLocator.php
+++ b/src/DataDefinitionsBundle/Service/StorageLocator.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Setter/ClassificationStoreFieldGetter.php b/src/DataDefinitionsBundle/Setter/ClassificationStoreFieldGetter.php
index ad2f0a33..93547c1b 100644
--- a/src/DataDefinitionsBundle/Setter/ClassificationStoreFieldGetter.php
+++ b/src/DataDefinitionsBundle/Setter/ClassificationStoreFieldGetter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Setter/ClassificationStoreSetter.php b/src/DataDefinitionsBundle/Setter/ClassificationStoreSetter.php
index 2a479ce9..d6f4e90d 100644
--- a/src/DataDefinitionsBundle/Setter/ClassificationStoreSetter.php
+++ b/src/DataDefinitionsBundle/Setter/ClassificationStoreSetter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Setter/CoreShop/StorePriceSetter.php b/src/DataDefinitionsBundle/Setter/CoreShop/StorePriceSetter.php
index d2a31f61..f91602dc 100644
--- a/src/DataDefinitionsBundle/Setter/CoreShop/StorePriceSetter.php
+++ b/src/DataDefinitionsBundle/Setter/CoreShop/StorePriceSetter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Setter/CoreShop/StoreValuesSetter.php b/src/DataDefinitionsBundle/Setter/CoreShop/StoreValuesSetter.php
index c8a0c80e..c81583a4 100644
--- a/src/DataDefinitionsBundle/Setter/CoreShop/StoreValuesSetter.php
+++ b/src/DataDefinitionsBundle/Setter/CoreShop/StoreValuesSetter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Setter/FieldCollectionSetter.php b/src/DataDefinitionsBundle/Setter/FieldCollectionSetter.php
index 78eadaf0..482e50ea 100644
--- a/src/DataDefinitionsBundle/Setter/FieldCollectionSetter.php
+++ b/src/DataDefinitionsBundle/Setter/FieldCollectionSetter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Setter/KeySetter.php b/src/DataDefinitionsBundle/Setter/KeySetter.php
index f2d38c48..1a18bc84 100644
--- a/src/DataDefinitionsBundle/Setter/KeySetter.php
+++ b/src/DataDefinitionsBundle/Setter/KeySetter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Setter/LocalizedfieldSetter.php b/src/DataDefinitionsBundle/Setter/LocalizedfieldSetter.php
index 7953142c..08511392 100644
--- a/src/DataDefinitionsBundle/Setter/LocalizedfieldSetter.php
+++ b/src/DataDefinitionsBundle/Setter/LocalizedfieldSetter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Setter/ObjectTypeSetter.php b/src/DataDefinitionsBundle/Setter/ObjectTypeSetter.php
index 5e060ee8..9b4bcc55 100644
--- a/src/DataDefinitionsBundle/Setter/ObjectTypeSetter.php
+++ b/src/DataDefinitionsBundle/Setter/ObjectTypeSetter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Setter/ObjectbrickSetter.php b/src/DataDefinitionsBundle/Setter/ObjectbrickSetter.php
index b63d27e5..1808f8ef 100644
--- a/src/DataDefinitionsBundle/Setter/ObjectbrickSetter.php
+++ b/src/DataDefinitionsBundle/Setter/ObjectbrickSetter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Setter/RelationSetter.php b/src/DataDefinitionsBundle/Setter/RelationSetter.php
index 298cab83..f3bad449 100644
--- a/src/DataDefinitionsBundle/Setter/RelationSetter.php
+++ b/src/DataDefinitionsBundle/Setter/RelationSetter.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/DataDefinitionsBundle/Setter/SetterInterface.php b/src/DataDefinitionsBundle/Setter/SetterInterface.php
index 9d947b8c..bce5d14a 100644
--- a/src/DataDefinitionsBundle/Setter/SetterInterface.php
+++ b/src/DataDefinitionsBundle/Setter/SetterInterface.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
diff --git a/src/Kernel.php b/src/Kernel.php
index 5d60c65b..9d9c266b 100644
--- a/src/Kernel.php
+++ b/src/Kernel.php
@@ -9,7 +9,7 @@
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
- * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://www.instride.ch)
+ * @copyright Copyright (c) CORS GmbH (https://www.cors.gmbh) in combination with instride AG (https://instride.ch)
* @license GPLv3 and DDCL
*/
From bfa719d704cfbd01679af63c580f203e879fae8f Mon Sep 17 00:00:00 2001
From: Dominik Pfaffenbauer
Date: Thu, 17 Oct 2024 08:22:39 +0200
Subject: [PATCH 5/8] [License] change license to Dual-License with GPL and
Data Definitions Commercial License (DDCL)
---
LICENSE.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/LICENSE.md b/LICENSE.md
index 14287133..a4771e33 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -26,7 +26,7 @@ along with this program. If not, see .
## Data Definitions Commercial License (DDCL)
Alternatively, commercial and supported versions of the program - also known as
Commercial Distributions - must be used in accordance with the terms and conditions
-contained in a separate written agreement between you and CoreShop GmbH.
+contained in a separate written agreement between you and CORS GmbH/instride AG.
For more information about the Data Definitions Commercial License (DDCL) please contact office@cors.gmbh.
From 326560913b5f7b68cc0a077671738562996c67ba Mon Sep 17 00:00:00 2001
From: Dominik Pfaffenbauer
Date: Thu, 17 Oct 2024 08:27:05 +0200
Subject: [PATCH 6/8] fix asset url interpreter
---
features/interpreter/asset_url.feature | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/features/interpreter/asset_url.feature b/features/interpreter/asset_url.feature
index 14225f40..8366d1ff 100644
--- a/features/interpreter/asset_url.feature
+++ b/features/interpreter/asset_url.feature
@@ -23,10 +23,10 @@ Feature: Adding a import with a interpreter
Given there is a file test.csv with content:
"""
name,image
- test1,https://placehold.co/600x400?text=Hello+Pimcore.png
+ test1,https://www.coreshop.org/assets/img/logo-full.svg
"""
And I run the import-definitions with params:
| key | value |
| file | test.csv |
Then there should be "1" data-objects for definition
- And the field "image" for object of the definition should have the value of asset "/images/fff.png"
+ And the field "image" for object of the definition should have the value of asset "/images/logo-full.svg.png"
From d04fabecf60c48467cf61963a3b216d4e4521b4a Mon Sep 17 00:00:00 2001
From: Dominik Pfaffenbauer
Date: Thu, 17 Oct 2024 08:39:08 +0200
Subject: [PATCH 7/8] disable asset_url
---
features/interpreter/asset_url.feature | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/features/interpreter/asset_url.feature b/features/interpreter/asset_url.feature
index 8366d1ff..ab903506 100644
--- a/features/interpreter/asset_url.feature
+++ b/features/interpreter/asset_url.feature
@@ -1,4 +1,4 @@
-@interpreter @interpreter_asset_url
+@interpreter @interpreter_asset_url @wip
Feature: Adding a import with a interpreter
The Interpreter will check for an image to download and assign it if found
From f5bbe2272892ebdeb40a2423a38a7813e3be60eb Mon Sep 17 00:00:00 2001
From: Dominik Pfaffenbauer
Date: Thu, 17 Oct 2024 08:43:35 +0200
Subject: [PATCH 8/8] disable asset_url
---
.../Behat/Resources/config/profiles/default.yml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/tests/DataDefinitionsBundle/Behat/Resources/config/profiles/default.yml b/tests/DataDefinitionsBundle/Behat/Resources/config/profiles/default.yml
index e88d3ecd..fa762d95 100644
--- a/tests/DataDefinitionsBundle/Behat/Resources/config/profiles/default.yml
+++ b/tests/DataDefinitionsBundle/Behat/Resources/config/profiles/default.yml
@@ -12,3 +12,6 @@ default:
path: src/BehatKernel.php
class: BehatKernel
environment: test
+ gherkin:
+ filters:
+ tags: '~@wip'