diff --git a/src/Bundle/ChillPersonBundle/Service/DocGenerator/AccompanyingPeriodWorkEvaluationContext.php b/src/Bundle/ChillPersonBundle/Service/DocGenerator/AccompanyingPeriodWorkEvaluationContext.php index 86e2f8ae9..75546417f 100644 --- a/src/Bundle/ChillPersonBundle/Service/DocGenerator/AccompanyingPeriodWorkEvaluationContext.php +++ b/src/Bundle/ChillPersonBundle/Service/DocGenerator/AccompanyingPeriodWorkEvaluationContext.php @@ -50,8 +50,6 @@ class AccompanyingPeriodWorkEvaluationContext implements private ThirdPartyRender $thirdPartyRender; - private ThirdPartyRepository $thirdPartyRepository; - private TranslatorInterface $translator; public function __construct( @@ -61,7 +59,6 @@ class AccompanyingPeriodWorkEvaluationContext implements NormalizerInterface $normalizer, TranslatableStringHelperInterface $translatableStringHelper, ThirdPartyRender $thirdPartyRender, - ThirdPartyRepository $thirdPartyRepository, TranslatorInterface $translator ) { $this->accompanyingPeriodWorkContext = $accompanyingPeriodWorkContext; @@ -70,7 +67,6 @@ class AccompanyingPeriodWorkEvaluationContext implements $this->normalizer = $normalizer; $this->translatableStringHelper = $translatableStringHelper; $this->thirdPartyRender = $thirdPartyRender; - $this->thirdPartyRepository = $thirdPartyRepository; $this->translator = $translator; }