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

CPS-IT / personio-jobs / 16290559563

15 Jul 2025 10:16AM UTC coverage: 3.125% (-0.5%) from 3.649%
16290559563

push

github

web-flow
Merge pull request #238 from CPS-IT/renovate/cuyz-valinor-2.x

[TASK] Update cuyz/valinor to v2

3 of 8 new or added lines in 4 files covered. (37.5%)

23 of 736 relevant lines covered (3.13%)

0.14 hits per line

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

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

3
declare(strict_types=1);
4

5
/*
6
 * This file is part of the TYPO3 CMS extension "personio_jobs".
7
 *
8
 * Copyright (C) 2023 Elias Häußler <e.haeussler@familie-redlich.de>
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 CPSIT\Typo3PersonioJobs\Exception;
25

26
use CuyZ\Valinor\Mapper\MappingError;
27

28
/**
29
 * MalformedApiResponseException
30
 *
31
 * @author Elias Häußler <e.haeussler@familie-redlich.de>
32
 * @license GPL-2.0-or-later
33
 */
34
final class MalformedApiResponseException extends \RuntimeException
35
{
NEW
36
    public static function forMappingError(MappingError $error): self
×
37
    {
38
        $message = 'Received malformed API response:';
×
39

NEW
40
        foreach ($error->messages() as $errorMessage) {
×
NEW
41
            $message .= PHP_EOL . sprintf(' - %s: %s', $errorMessage->path(), $errorMessage->toString());
×
42
        }
43

44
        return new self($message, 1677234223);
×
45
    }
46
}
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