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

api-platform / core / 15187574500

22 May 2025 01:14PM UTC coverage: 27.347%. Remained the same
15187574500

push

github

soyuka
docs: changelog 4.1.11

13482 of 49299 relevant lines covered (27.35%)

74.57 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
    {
42
    }
2,032✔
43

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

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

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