• 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

40.0
/Classes/Event/SpamCheckEvent.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 SpamCheckEvent extends AbstractEvent
13
{
14
    public function __construct(
6✔
15
        protected readonly array $settings,
16
        protected readonly array $arguments,
17
        protected int $spamPoints
18
    ) {
19
    }
6✔
20

21
    public function getSettings(): array
×
22
    {
23
        return $this->settings;
×
24
    }
25

26
    public function getArguments(): array
×
27
    {
28
        return $this->arguments;
×
29
    }
30

31
    public function getSpamPoints(): int
6✔
32
    {
33
        return $this->spamPoints;
6✔
34
    }
35

36
    public function setSpamPoints(int $spamPoints): void
×
37
    {
38
        $this->spamPoints = $spamPoints;
×
39
    }
40
}
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