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

CPS-IT / handlebars / 21024750977

15 Jan 2026 08:32AM UTC coverage: 89.818% (-1.2%) from 91.063%
21024750977

push

github

web-flow
Merge pull request #516 from CPS-IT/feature/data-sources

[FEATURE] Extract processor data source handling to a separate component

113 of 137 new or added lines in 7 files covered. (82.48%)

1235 of 1375 relevant lines covered (89.82%)

6.2 hits per line

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

0.0
/Classes/Exception/PathIsMissingInDataSource.php
1
<?php
2

3
declare(strict_types=1);
4

5
/*
6
 * This file is part of the TYPO3 CMS extension "handlebars".
7
 *
8
 * It is free software; you can redistribute it and/or modify it under
9
 * the terms of the GNU General Public License, either version 2
10
 * of the License, or any later version.
11
 *
12
 * For the full copyright and license information, please read the
13
 * LICENSE.txt file that was distributed with this source code.
14
 *
15
 * The TYPO3 project - inspiring people to share!
16
 */
17

18
namespace CPSIT\Typo3Handlebars\Exception;
19

20
use CPSIT\Typo3Handlebars\DataProcessing;
21

22
/**
23
 * PathIsMissingInDataSource
24
 *
25
 * @author Elias Häußler <e.haeussler@familie-redlich.de>
26
 * @license GPL-2.0-or-later
27
 */
28
final class PathIsMissingInDataSource extends Exception
29
{
NEW
30
    public function __construct(
×
31
        public readonly string $path,
32
        public readonly DataProcessing\DataSource\DataSource $dataSource,
33
        ?\Throwable $previous = null
34
    ) {
NEW
35
        parent::__construct(
×
NEW
36
            sprintf('The request path "%s" is missing in data source "%s".', $this->path, $dataSource->value),
×
NEW
37
            1768386419,
×
NEW
38
            $previous,
×
NEW
39
        );
×
40
    }
41
}
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