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

api-platform / core / 20847864477

09 Jan 2026 09:47AM UTC coverage: 29.1% (+0.005%) from 29.095%
20847864477

Pull #7649

github

web-flow
Merge b342dd5db into d640d106b
Pull Request #7649: feat(validator): uuid/ulid parameter validation

0 of 4 new or added lines in 1 file covered. (0.0%)

15050 existing lines in 491 files now uncovered.

16996 of 58406 relevant lines covered (29.1%)

81.8 hits per line

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

100.0
/src/Symfony/Bundle/Resources/config/state/processor.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 Symfony\Component\DependencyInjection\Loader\Configurator;
15

UNCOV
16
return function (ContainerConfigurator $container) {
6✔
UNCOV
17
    $services = $container->services();
6✔
18

UNCOV
19
    $services->alias('api_platform.state_processor.main', 'api_platform.state_processor.respond');
6✔
20

UNCOV
21
    $services->set('api_platform.state_processor.serialize', 'ApiPlatform\State\Processor\SerializeProcessor')
6✔
UNCOV
22
        ->decorate('api_platform.state_processor.main', null, 200)
6✔
UNCOV
23
        ->args([
6✔
UNCOV
24
            service('api_platform.state_processor.serialize.inner'),
6✔
UNCOV
25
            service('api_platform.serializer'),
6✔
UNCOV
26
            service('api_platform.serializer.context_builder'),
6✔
UNCOV
27
        ]);
6✔
28

UNCOV
29
    $services->set('api_platform.state_processor.write', 'ApiPlatform\State\Processor\WriteProcessor')
6✔
UNCOV
30
        ->decorate('api_platform.state_processor.main', null, 100)
6✔
UNCOV
31
        ->args([
6✔
UNCOV
32
            service('api_platform.state_processor.write.inner'),
6✔
UNCOV
33
            service('api_platform.state_processor.locator'),
6✔
UNCOV
34
        ]);
6✔
35

UNCOV
36
    $services->set('api_platform.state_processor.respond', 'ApiPlatform\State\Processor\RespondProcessor')
6✔
UNCOV
37
        ->args([
6✔
UNCOV
38
            service('api_platform.iri_converter'),
6✔
UNCOV
39
            service('api_platform.resource_class_resolver'),
6✔
UNCOV
40
            service('api_platform.metadata.operation.metadata_factory'),
6✔
UNCOV
41
        ]);
6✔
42

UNCOV
43
    $services->set('api_platform.state_processor.add_link_header', 'ApiPlatform\State\Processor\AddLinkHeaderProcessor')
6✔
UNCOV
44
        ->decorate('api_platform.state_processor.respond', null, 0)
6✔
UNCOV
45
        ->args([service('api_platform.state_processor.add_link_header.inner')]);
6✔
UNCOV
46
};
6✔
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