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

api-platform / core / 15255731762

26 May 2025 01:55PM UTC coverage: 0.0% (-26.5%) from 26.526%
15255731762

Pull #7176

github

web-flow
Merge 66f6cf4d2 into 79edced67
Pull Request #7176: Merge 4.1

0 of 387 new or added lines in 28 files covered. (0.0%)

11394 existing lines in 372 files now uncovered.

0 of 51334 relevant lines covered (0.0%)

0.0 hits per line

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

0.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
    }
×
43

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

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

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