‪TYPO3CMS  ‪main
ModifyValidatorTaskEmailEvent.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
19 
22 
27 {
28  public function ‪__construct(
29  private ‪LinkAnalyzerResult $linkAnalyzerResult,
30  private ‪FluidEmail $fluidEmail,
31  private array $modTSconfig
32  ) {}
33 
35  {
36  return $this->linkAnalyzerResult;
37  }
38 
39  public function ‪getFluidEmail(): ‪FluidEmail
40  {
41  return $this->fluidEmail;
42  }
43 
44  public function ‪getModTSconfig(): array
45  {
46  return $this->modTSconfig;
47  }
48 }
‪TYPO3\CMS\Linkvalidator\Event\ModifyValidatorTaskEmailEvent
Definition: ModifyValidatorTaskEmailEvent.php:27
‪TYPO3\CMS\Core\Mail\FluidEmail
Definition: FluidEmail.php:35
‪TYPO3\CMS\Linkvalidator\Event\ModifyValidatorTaskEmailEvent\getLinkAnalyzerResult
‪getLinkAnalyzerResult()
Definition: ModifyValidatorTaskEmailEvent.php:34
‪TYPO3\CMS\Linkvalidator\Event\ModifyValidatorTaskEmailEvent\getFluidEmail
‪getFluidEmail()
Definition: ModifyValidatorTaskEmailEvent.php:39
‪TYPO3\CMS\Linkvalidator\Event\ModifyValidatorTaskEmailEvent\getModTSconfig
‪getModTSconfig()
Definition: ModifyValidatorTaskEmailEvent.php:44
‪TYPO3\CMS\Linkvalidator\Event\ModifyValidatorTaskEmailEvent\__construct
‪__construct(private LinkAnalyzerResult $linkAnalyzerResult, private FluidEmail $fluidEmail, private array $modTSconfig)
Definition: ModifyValidatorTaskEmailEvent.php:28
‪TYPO3\CMS\Linkvalidator\Event
Definition: BeforeRecordIsAnalyzedEvent.php:18