Feature: add thirdParty choice in docgen accperiodworkevaluation context - phpstan

This commit is contained in:
nobohan 2023-05-25 10:10:52 +02:00
parent ef59e6dc1c
commit 6232dabae5

View File

@ -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;
}