• 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

0.0
/Classes/Event/Post/Notification/SubscribersEvent.php
1
<?php
2

3
namespace FelixNagel\T3extblog\Event\Post\Notification;
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
use FelixNagel\T3extblog\Domain\Model\Post;
13
use FelixNagel\T3extblog\Event\AbstractNotificationEvent;
14
use TYPO3\CMS\Extbase\Persistence\QueryResultInterface;
15

16
class SubscribersEvent extends AbstractNotificationEvent
17
{
18
    public function __construct(
×
19
        protected readonly Post $post,
20
        protected array|QueryResultInterface $subscribers,
21
        protected string $subject,
22
        protected array $variables
23
    ) {
24
    }
×
25

26
    public function getPost(): Post
×
27
    {
28
        return $this->post;
×
29
    }
30

31
    public function getSubscribers(): array|QueryResultInterface
×
32
    {
33
        return $this->subscribers;
×
34
    }
35

36
    public function setSubscribers(QueryResultInterface|array $subscribers): void
×
37
    {
38
        $this->subscribers = $subscribers;
×
39
    }
40

41
    public function getSubject(): string
×
42
    {
43
        return $this->subject;
×
44
    }
45

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

51
    public function getVariables(): array
×
52
    {
53
        return $this->variables;
×
54
    }
55

56
    public function setVariables(array $variables): void
×
57
    {
58
        $this->variables = $variables;
×
59
    }
60
}
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