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

api-platform / core / 19165586840

07 Nov 2025 10:29AM UTC coverage: 0.0% (-22.0%) from 22.042%
19165586840

Pull #7514

github

web-flow
Merge e9333c522 into 0edbc37fc
Pull Request #7514: fix(jsonld): read identifier with itemUriTemplate

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

11196 existing lines in 362 files now uncovered.

0 of 49868 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/Symfony/Bundle/ApiPlatformBundle.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\Symfony\Bundle;
15

16
use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\AttributeFilterPass;
17
use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\AuthenticatorManagerPass;
18
use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\DataProviderPass;
19
use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\ElasticsearchClientPass;
20
use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\FilterPass;
21
use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\GraphQlResolverPass;
22
use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\GraphQlTypePass;
23
use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\MetadataAwareNameConverterPass;
24
use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\SerializerMappingLoaderPass;
25
use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\TestClientPass;
26
use ApiPlatform\Symfony\Bundle\DependencyInjection\Compiler\TestMercureHubPass;
27
use Symfony\Component\DependencyInjection\Compiler\PassConfig;
28
use Symfony\Component\DependencyInjection\ContainerBuilder;
29
use Symfony\Component\HttpKernel\Bundle\Bundle;
30

31
/**
32
 * The Symfony bundle.
33
 *
34
 * @author Kévin Dunglas <dunglas@gmail.com>
35
 */
36
final class ApiPlatformBundle extends Bundle
37
{
38
    /**
39
     * {@inheritdoc}
40
     */
41
    public function build(ContainerBuilder $container): void
42
    {
UNCOV
43
        parent::build($container);
×
44

UNCOV
45
        $container->addCompilerPass(new DataProviderPass());
×
46
        // Run the compiler pass before the {@see ResolveInstanceofConditionalsPass} to allow autoconfiguration of generated filter definitions.
UNCOV
47
        $container->addCompilerPass(new AttributeFilterPass(), PassConfig::TYPE_BEFORE_OPTIMIZATION, 101);
×
UNCOV
48
        $container->addCompilerPass(new FilterPass());
×
UNCOV
49
        $container->addCompilerPass(new ElasticsearchClientPass());
×
UNCOV
50
        $container->addCompilerPass(new GraphQlTypePass());
×
UNCOV
51
        $container->addCompilerPass(new GraphQlResolverPass());
×
UNCOV
52
        $container->addCompilerPass(new MetadataAwareNameConverterPass(), PassConfig::TYPE_BEFORE_OPTIMIZATION, 100);
×
UNCOV
53
        $container->addCompilerPass(new TestClientPass());
×
UNCOV
54
        $container->addCompilerPass(new TestMercureHubPass());
×
UNCOV
55
        $container->addCompilerPass(new AuthenticatorManagerPass());
×
UNCOV
56
        $container->addCompilerPass(new SerializerMappingLoaderPass());
×
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

© 2026 Coveralls, Inc