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

Yoast / Yoast-SEO-for-TYPO3 / 22309740172

23 Feb 2026 02:12PM UTC coverage: 10.09% (+8.8%) from 1.275%
22309740172

push

github

RinyVT
[FEATURE] Version 12.0.0, added v14 support, removed v11 support including php8.0 and php8.1, rewrote backend javascript functionality to typescript and webcomponents

28 of 552 new or added lines in 53 files covered. (5.07%)

33 existing lines in 21 files now uncovered.

268 of 2656 relevant lines covered (10.09%)

0.27 hits per line

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

0.0
/Classes/MetaTag/AdvancedRobots/RobotsMetaTagManager.php
1
<?php
2

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

10
declare(strict_types=1);
11

12
namespace YoastSeoForTypo3\YoastSeo\MetaTag\AdvancedRobots;
13

14
use TYPO3\CMS\Core\MetaTag\MetaTagManagerInterface;
15
use TYPO3\CMS\Core\MetaTag\MetaTagManagerRegistry;
16

17
class RobotsMetaTagManager
18
{
19
    protected MetaTagManagerInterface $manager;
20

21
    public function __construct(
22
        MetaTagManagerRegistry $metaTagManagerRegistry
23
    ) {
UNCOV
24
        $this->manager = $metaTagManagerRegistry->getManagerForProperty('robots');
×
25
    }
26

27
    public function removeRobotsTag(): void
28
    {
29
        $this->manager->removeProperty('robots');
×
30
    }
31

32
    public function addRobotsTag(string $robots): void
33
    {
34
        $this->manager->addProperty('robots', $robots);
×
35
    }
36
}
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