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

fnagel / t3extblog / 23823603081

31 Mar 2026 11:05PM UTC coverage: 37.437% (-12.6%) from 50.045%
23823603081

push

github

fnagel
[FEATURE] Add YAML lint to composer scripts and CI

Using the new TYPO3 14.2 built in YAML linter.

https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/13.3/Feature-104973-ActivateLintYamlExecutableForTYPO3.html

1256 of 3355 relevant lines covered (37.44%)

3.11 hits per line

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

0.0
/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(
×
15
        protected array $mailTo,
16
        protected array $mailFrom,
17
        protected string $subject,
18
        protected array $variables,
19
        protected string $templatePath
20
    ) {
21
    }
×
22

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

28
    public function getMailFrom(): array
×
29
    {
30
        return $this->mailFrom;
×
31
    }
32

33
    public function getSubject(): string
×
34
    {
35
        return $this->subject;
×
36
    }
37

38
    public function getVariables(): array
×
39
    {
40
        return $this->variables;
×
41
    }
42

43
    public function getTemplatePath(): string
×
44
    {
45
        return $this->templatePath;
×
46
    }
47
}
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