forked from nelmio/alice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNelmioAliceBundle.php
85 lines (79 loc) · 3.21 KB
/
NelmioAliceBundle.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
/*
* This file is part of the Alice package.
*
* (c) Nelmio <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Nelmio\Alice\Bridge\Symfony;
use Nelmio\Alice\Bridge\Symfony\DependencyInjection\Compiler\CheckBundleDependenciesPass;
use Nelmio\Alice\Bridge\Symfony\DependencyInjection\Compiler\RegisterFakerProvidersPass;
use Nelmio\Alice\Bridge\Symfony\DependencyInjection\Compiler\RegisterTagServicesPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
final class NelmioAliceBundle extends Bundle
{
public function build(ContainerBuilder $container): void
{
parent::build($container);
$container->addCompilerPass(new CheckBundleDependenciesPass());
$container->addCompilerPass(new RegisterFakerProvidersPass());
$container->addCompilerPass(
new RegisterTagServicesPass(
'nelmio_alice.file_parser.registry',
'nelmio_alice.file_parser',
),
);
$container->addCompilerPass(
new RegisterTagServicesPass(
'nelmio_alice.fixture_builder.denormalizer.flag_parser.registry',
'nelmio_alice.fixture_builder.denormalizer.chainable_flag_parser',
),
);
$container->addCompilerPass(
new RegisterTagServicesPass(
'nelmio_alice.fixture_builder.denormalizer.fixture.registry_denormalizer',
'nelmio_alice.fixture_builder.denormalizer.chainable_fixture_denormalizer',
),
);
$container->addCompilerPass(
new RegisterTagServicesPass(
'nelmio_alice.fixture_builder.denormalizer.fixture.specs.calls.simple_denormalizer',
'nelmio_alice.fixture_builder.denormalizer.chainable_method_flag_handler',
),
);
$container->addCompilerPass(
new RegisterTagServicesPass(
'nelmio_alice.fixture_builder.expression_language.parser.token_parser.registry',
'nelmio_alice.fixture_builder.expression_language.chainable_token_parser',
),
);
$container->addCompilerPass(
new RegisterTagServicesPass(
'nelmio_alice.generator.instantiator.registry',
'nelmio_alice.generator.instantiator.chainable_instantiator',
),
);
$container->addCompilerPass(
new RegisterTagServicesPass(
'nelmio_alice.generator.caller.registry',
'nelmio_alice.generator.caller.chainable_call_processor',
),
);
$container->addCompilerPass(
new RegisterTagServicesPass(
'nelmio_alice.generator.resolver.parameter.registry',
'nelmio_alice.generator.resolver.parameter.chainable_resolver',
),
);
$container->addCompilerPass(
new RegisterTagServicesPass(
'nelmio_alice.generator.resolver.value.registry',
'nelmio_alice.generator.resolver.value.chainable_resolver',
),
);
}
}