Skip to content

Commit

Permalink
Apply php-cs-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lukmzig authored and github-actions[bot] committed Mar 14, 2023
1 parent cdf131c commit 8e8be7d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions models/DataObject/Classificationstore.php
Expand Up @@ -111,7 +111,7 @@ public function setItems($items)
*/
public function getItems()
{
return $this->getAllDataFromField(fn($classificationStore, $fieldsArray) => $fieldsArray + $classificationStore->items);
return $this->getAllDataFromField(fn ($classificationStore, $fieldsArray) => $fieldsArray + $classificationStore->items);
}

/**
Expand Down Expand Up @@ -467,7 +467,7 @@ public static function doGetFallbackValues()
*/
public function getGroupCollectionMappings(): array
{
return $this->getAllDataFromField(fn($classificationStore, $fieldsArray) => $fieldsArray + $classificationStore->groupCollectionMapping);
return $this->getAllDataFromField(fn ($classificationStore, $fieldsArray) => $fieldsArray + $classificationStore->groupCollectionMapping);
}

/**
Expand Down Expand Up @@ -504,7 +504,7 @@ public function getGroupCollectionMapping($groupId)
*/
public function getGroups(): array
{
return $this->getAllDataFromField(fn($classificationStore, $fieldsArray) => array_merge(Classificationstore::getActiveGroupsWithConfig($classificationStore), $fieldsArray));
return $this->getAllDataFromField(fn ($classificationStore, $fieldsArray) => array_merge(Classificationstore::getActiveGroupsWithConfig($classificationStore), $fieldsArray));
}

private function getAllDataFromField(callable $mergeFunction): array
Expand Down

0 comments on commit 8e8be7d

Please sign in to comment.