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 ThirdPartyRender $thirdPartyRender;
private ThirdPartyRepository $thirdPartyRepository;
private TranslatorInterface $translator; private TranslatorInterface $translator;
public function __construct( public function __construct(
@ -61,7 +59,6 @@ class AccompanyingPeriodWorkEvaluationContext implements
NormalizerInterface $normalizer, NormalizerInterface $normalizer,
TranslatableStringHelperInterface $translatableStringHelper, TranslatableStringHelperInterface $translatableStringHelper,
ThirdPartyRender $thirdPartyRender, ThirdPartyRender $thirdPartyRender,
ThirdPartyRepository $thirdPartyRepository,
TranslatorInterface $translator TranslatorInterface $translator
) { ) {
$this->accompanyingPeriodWorkContext = $accompanyingPeriodWorkContext; $this->accompanyingPeriodWorkContext = $accompanyingPeriodWorkContext;
@ -70,7 +67,6 @@ class AccompanyingPeriodWorkEvaluationContext implements
$this->normalizer = $normalizer; $this->normalizer = $normalizer;
$this->translatableStringHelper = $translatableStringHelper; $this->translatableStringHelper = $translatableStringHelper;
$this->thirdPartyRender = $thirdPartyRender; $this->thirdPartyRender = $thirdPartyRender;
$this->thirdPartyRepository = $thirdPartyRepository;
$this->translator = $translator; $this->translator = $translator;
} }