From cd4b14923c20ee16d8b3cb4d0f4a9c479f1c7e2b Mon Sep 17 00:00:00 2001 From: aweichler Date: Wed, 17 Apr 2024 03:12:05 +0000 Subject: [PATCH] Apply php-cs-fixer changes --- src/ConfigElement/AbstractConfigElement.php | 2 +- src/ConfigElement/Operator/Concatenator.php | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/ConfigElement/AbstractConfigElement.php b/src/ConfigElement/AbstractConfigElement.php index 2e9804f..d0e94c8 100644 --- a/src/ConfigElement/AbstractConfigElement.php +++ b/src/ConfigElement/AbstractConfigElement.php @@ -60,7 +60,7 @@ public function setClassificationstoreGroup(?string $classificationstore_group): { $this->classificationstore_group = $classificationstore_group; } - + public function getAttribute() { return $this->attribute; diff --git a/src/ConfigElement/Operator/Concatenator.php b/src/ConfigElement/Operator/Concatenator.php index 59a8df1..ced3af1 100644 --- a/src/ConfigElement/Operator/Concatenator.php +++ b/src/ConfigElement/Operator/Concatenator.php @@ -16,7 +16,6 @@ namespace OutputDataConfigToolkitBundle\ConfigElement\Operator; use OutputDataConfigToolkitBundle\ConfigElement\AbstractConfigElement; -use OutputDataConfigToolkitBundle\ConfigElement\Value\DefaultValue; class Concatenator extends AbstractOperator { @@ -51,7 +50,7 @@ public function getLabeledValue($object) $c->setClassificationstore($this->getClassificationstore()); $c->setClassificationstoreGroup($this->getClassificationstoreGroup()); } - + $value = $c->getLabeledValue($object) ? $c->getLabeledValue($object)->value : null; if (!$hasValue) {