mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 22:53:49 +00:00
fixes for last rebase and fixes for runtime
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user