WIP Upgrade to TYPO3 10.4

This commit is contained in:
Björn Fromme
2021-04-01 21:33:24 +02:00
parent 571bba47f1
commit 0263d9fdd0
36 changed files with 1751 additions and 854 deletions
@@ -50,7 +50,6 @@ class ActivityController extends ActionController
*/
public function __construct(ActivityRepository $activityRepository, OfferRepository $offerRepository)
{
parent::__construct();
$this->activityRepository = $activityRepository;
$this->offerRepository = $offerRepository;
}
@@ -48,8 +48,6 @@ class AjaxFormController extends ActionController
public function __construct(EmailService $emailService, ConfigurationService $configurationService)
{
parent::__construct();
$this->emailService = $emailService;
$this->configurationService = $configurationService;
}
@@ -40,8 +40,6 @@ class AjaxOfferController extends ActionController
FileRepository $fileRepository,
ImageService $imageService
) {
parent::__construct();
$this->offerRepository = $offerRepository;
$this->fileRepository = $fileRepository;
$this->imageService = $imageService;
@@ -44,8 +44,6 @@ class FormController extends ActionController
*/
public function __construct(ConfigurationService $configurationService)
{
parent::__construct();
$this->configurationService = $configurationService;
}
@@ -45,7 +45,6 @@ class OfferController extends ActionController
*/
public function __construct(OfferRepository $offerRepository)
{
parent::__construct();
$this->offerRepository = $offerRepository;
}
@@ -45,7 +45,6 @@ class SearchController extends ActionController
*/
public function __construct(OfferRepository $offerRepository)
{
parent::__construct();
$this->offerRepository = $offerRepository;
}