fixes for last rebase and fixes for runtime

This commit is contained in:
2023-04-28 23:03:36 +02:00
parent c35994203d
commit 7e19419861
8 changed files with 11 additions and 69 deletions

View File

@@ -36,7 +36,7 @@ class CustomFieldsGroupController extends AbstractController
/**
* CustomFieldsGroupController constructor.
*/
public function __construct(private CustomFieldProvider $customfieldProvider, private TranslatorInterface $translator)
public function __construct(private CustomFieldProvider $customFieldProvider, private TranslatorInterface $translator)
{
}
@@ -283,7 +283,7 @@ class CustomFieldsGroupController extends AbstractController
{
$fieldChoices = [];
foreach ($this->customfieldProvider->getAllFields()
foreach ($this->customFieldProvider->getAllFields()
as $key => $customType) {
$fieldChoices[$key] = $customType->getName();
}