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

eliashaeussler / typo3-warming / 14534307929

18 Apr 2025 11:15AM UTC coverage: 91.827% (-0.2%) from 92.065%
14534307929

Pull #769

github

eliashaeussler
[!!!][TASK] Drop support for PHP 8.1
Pull Request #769: [!!!][FEATURE] Require `eliashaeussler/cache-warmup` ^4.0

85 of 90 new or added lines in 12 files covered. (94.44%)

2 existing lines in 1 file now uncovered.

1191 of 1297 relevant lines covered (91.83%)

9.29 hits per line

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

87.5
/Classes/EventListener/LoggingCrawlerListener.php
1
<?php
2

3
declare(strict_types=1);
4

5
/*
6
 * This file is part of the TYPO3 CMS extension "warming".
7
 *
8
 * Copyright (C) 2021-2025 Elias Häußler <elias@haeussler.dev>
9
 *
10
 * This program is free software: you can redistribute it and/or modify
11
 * it under the terms of the GNU General Public License as published by
12
 * the Free Software Foundation, either version 2 of the License, or
13
 * (at your option) any later version.
14
 *
15
 * This program is distributed in the hope that it will be useful,
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
 * GNU General Public License for more details.
19
 *
20
 * You should have received a copy of the GNU General Public License
21
 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22
 */
23

24
namespace EliasHaeussler\Typo3Warming\EventListener;
25

26
use EliasHaeussler\CacheWarmup;
27
use TYPO3\CMS\Core;
28

29
/**
30
 * LoggingCrawlerListener
31
 *
32
 * @author Elias Häußler <elias@haeussler.dev>
33
 * @license GPL-2.0-or-later
34
 * @internal
35
 */
36
final class LoggingCrawlerListener
37
{
38
    public function __construct(
5✔
39
        private readonly Core\Log\LogManager $logManager,
40
    ) {}
5✔
41

42
    // @todo Enable attribute once support for TYPO3 v12 is dropped
43
    // #[\TYPO3\CMS\Core\Attribute\AsEventListener('eliashaeussler/typo3-warming/logging-crawler')]
44
    public function __invoke(CacheWarmup\Event\Crawler\CrawlerConstructed $event): void
5✔
45
    {
46
        $crawler = $event->crawler();
5✔
47

48
        if (!($crawler instanceof CacheWarmup\Crawler\LoggingCrawler)) {
5✔
NEW
49
            return;
×
50
        }
51

52
        $logger = $this->logManager->getLogger($crawler::class);
5✔
53
        $crawler->setLogger($logger);
5✔
54
    }
55
}
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

© 2025 Coveralls, Inc