• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

fnagel / t3extblog / 26153411758

20 May 2026 09:20AM UTC coverage: 49.822% (-0.3%) from 50.149%
26153411758

push

github

fnagel
[TASK] Remove TYPO3 v14.2 from testing

Fixes issue with v14.2.0 has security issues and improves test
performance.

1683 of 3378 relevant lines covered (49.82%)

4.43 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

54.55
/Classes/Event/SendEmailEvent.php
1
<?php
2

3
namespace FelixNagel\T3extblog\Event;
4

5
/**
6
 * This file is part of the "t3extblog" Extension for TYPO3 CMS.
7
 *
8
 * For the full copyright and license information, please read the
9
 * LICENSE.txt file that was distributed with this source code.
10
 */
11

12
class SendEmailEvent extends AbstractEvent
13
{
14
    public function __construct(
2✔
15
        protected array $mailTo,
16
        protected array $mailFrom,
17
        protected string $subject,
18
        protected array $variables,
19
        protected string $templatePath
20
    ) {
21
    }
2✔
22

23
    public function getMailTo(): array
2✔
24
    {
25
        return $this->mailTo;
2✔
26
    }
27

28
    public function setMailTo(array $mailTo): void
×
29
    {
30
        $this->mailTo = $mailTo;
×
31
    }
32

33
    public function getMailFrom(): array
2✔
34
    {
35
        return $this->mailFrom;
2✔
36
    }
37

38
    public function setMailFrom(array $mailFrom): void
×
39
    {
40
        $this->mailFrom = $mailFrom;
×
41
    }
42

43
    public function getSubject(): string
2✔
44
    {
45
        return $this->subject;
2✔
46
    }
47

48
    public function setSubject(string $subject): void
×
49
    {
50
        $this->subject = $subject;
×
51
    }
52

53
    public function getVariables(): array
2✔
54
    {
55
        return $this->variables;
2✔
56
    }
57

58
    public function setVariables(array $variables): void
×
59
    {
60
        $this->variables = $variables;
×
61
    }
62

63
    public function getTemplatePath(): string
2✔
64
    {
65
        return $this->templatePath;
2✔
66
    }
67

68
    public function setTemplatePath(string $templatePath): void
×
69
    {
70
        $this->templatePath = $templatePath;
×
71
    }
72
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc