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

api-platform / core / 15250451308

26 May 2025 09:29AM UTC coverage: 26.388% (+0.008%) from 26.38%
15250451308

push

github

soyuka
fix(openapi): `example` and `default` with nullable value not being shown

0 of 3 new or added lines in 2 files covered. (0.0%)

11122 existing lines in 371 files now uncovered.

13009 of 49299 relevant lines covered (26.39%)

44.73 hits per line

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

100.0
/src/State/Processor/WriteProcessor.php
1
<?php
2

3
/*
4
 * This file is part of the API Platform project.
5
 *
6
 * (c) Kévin Dunglas <dunglas@gmail.com>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11

12
declare(strict_types=1);
13

14
namespace ApiPlatform\State\Processor;
15

16
use ApiPlatform\Metadata\Operation;
17
use ApiPlatform\Metadata\Util\ClassInfoTrait;
18
use ApiPlatform\State\ProcessorInterface;
19
use Symfony\Component\HttpFoundation\Response;
20

21
/**
22
 * Bridges persistence and the API system.
23
 *
24
 * @template T1
25
 * @template T2
26
 *
27
 * @implements ProcessorInterface<T1, T2>
28
 *
29
 * @author Kévin Dunglas <dunglas@gmail.com>
30
 * @author Baptiste Meyer <baptiste.meyer@gmail.com>
31
 */
32
final class WriteProcessor implements ProcessorInterface
33
{
34
    use ClassInfoTrait;
35

36
    /**
37
     * @param ProcessorInterface<mixed, mixed> $processor
38
     * @param ProcessorInterface<mixed, mixed> $callableProcessor
39
     */
40
    public function __construct(private readonly ?ProcessorInterface $processor, private readonly ProcessorInterface $callableProcessor)
41
    {
UNCOV
42
    }
1,176✔
43

44
    public function process(mixed $data, Operation $operation, array $uriVariables = [], array $context = [])
45
    {
46
        if (
UNCOV
47
            $data instanceof Response
1,128✔
UNCOV
48
            || !($operation->canWrite() ?? true)
1,128✔
UNCOV
49
            || !$operation->getProcessor()
1,128✔
50
        ) {
UNCOV
51
            return $this->processor ? $this->processor->process($data, $operation, $uriVariables, $context) : $data;
940✔
52
        }
53

UNCOV
54
        $data = $this->callableProcessor->process($data, $operation, $uriVariables, $context);
202✔
55

UNCOV
56
        return $this->processor ? $this->processor->process($data, $operation, $uriVariables, $context) : $data;
199✔
57
    }
58
}
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