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

api-platform / core / 10739011304

06 Sep 2024 01:11PM UTC coverage: 7.159% (-0.5%) from 7.645%
10739011304

push

github

web-flow
 feat(laravel): eloquent filters (search, date, equals, or) (#6593)

* feat(laravel): Eloquent filters search date or

* feat(laravel): eloquent filters order range equals afterdate

* fix(laravel): order afterDate filters

* temp

* test(laravel): filter with eloquent

---------

Co-authored-by: Nathan <nathan@les-tilleuls.coop>

0 of 144 new or added lines in 16 files covered. (0.0%)

4792 existing lines in 155 files now uncovered.

11736 of 163930 relevant lines covered (7.16%)

22.8 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
    }
2,258✔
43

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

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

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