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

Yoast / Yoast-SEO-for-TYPO3 / 13327579701

14 Feb 2025 10:43AM UTC coverage: 1.276%. First build
13327579701

push

github

web-flow
Merge pull request #597 from Yoast/feature/v11

[FEATURE] Release 11.0.0

21 of 894 new or added lines in 76 files covered. (2.35%)

35 of 2744 relevant lines covered (1.28%)

0.04 hits per line

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

0.0
/Classes/Service/Overview/Dto/LanguageMenuItem.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace YoastSeoForTypo3\YoastSeo\Service\Overview\Dto;
6

7
class LanguageMenuItem
8
{
9
    public function __construct(
10
        protected string $title = '',
11
        protected string $href = '',
12
        protected bool $active = false,
NEW
13
    ) {}
×
14

15
    public function getTitle(): string
16
    {
17
        return $this->title;
×
18
    }
19

20
    public function setTitle(string $title): void
21
    {
22
        $this->title = $title;
×
23
    }
24

25
    public function getHref(): string
26
    {
27
        return $this->href;
×
28
    }
29

30
    public function setHref(string $href): void
31
    {
32
        $this->href = $href;
×
33
    }
34

35
    public function isActive(): bool
36
    {
37
        return $this->active;
×
38
    }
39

40
    public function setActive(bool $active): void
41
    {
42
        $this->active = $active;
×
43
    }
44
}
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