mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-29 02:53:50 +00:00
Fix loading of CalendarContext in CalendarContextTest. Needs to remove the final from PersonRepository
This commit is contained in:
@@ -33,8 +33,16 @@ use function count;
|
||||
|
||||
final readonly class CalendarContext implements CalendarContextInterface
|
||||
{
|
||||
public function __construct(private BaseContextData $baseContextData, private EntityManagerInterface $entityManager, private NormalizerInterface $normalizer, private PersonRender $personRender, private PersonRepository $personRepository, private ThirdPartyRender $thirdPartyRender, private ThirdPartyRepository $thirdPartyRepository, private TranslatableStringHelperInterface $translatableStringHelper)
|
||||
{
|
||||
public function __construct(
|
||||
private BaseContextData $baseContextData,
|
||||
private EntityManagerInterface $entityManager,
|
||||
private NormalizerInterface $normalizer,
|
||||
private PersonRender $personRender,
|
||||
private PersonRepository $personRepository,
|
||||
private ThirdPartyRender $thirdPartyRender,
|
||||
private ThirdPartyRepository $thirdPartyRepository,
|
||||
private TranslatableStringHelperInterface $translatableStringHelper
|
||||
) {
|
||||
}
|
||||
|
||||
public function adminFormReverseTransform(array $data): array
|
||||
|
Reference in New Issue
Block a user