You are here

protected function InlineServiceDefinitionsPassTest::process in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dependency-injection/Tests/Compiler/InlineServiceDefinitionsPassTest.php \Symfony\Component\DependencyInjection\Tests\Compiler\InlineServiceDefinitionsPassTest::process()
10 calls to InlineServiceDefinitionsPassTest::process()
InlineServiceDefinitionsPassTest::testProcess in vendor/symfony/dependency-injection/Tests/Compiler/InlineServiceDefinitionsPassTest.php
InlineServiceDefinitionsPassTest::testProcessDoesInlineServiceOfPrototypeScope in vendor/symfony/dependency-injection/Tests/Compiler/InlineServiceDefinitionsPassTest.php
InlineServiceDefinitionsPassTest::testProcessDoesNotInlinePrivateFactoryIfReferencedMultipleTimesWithinTheSameDefinition in vendor/symfony/dependency-injection/Tests/Compiler/InlineServiceDefinitionsPassTest.php
InlineServiceDefinitionsPassTest::testProcessDoesNotInlineReferenceWhenUsedByInlineFactory in vendor/symfony/dependency-injection/Tests/Compiler/InlineServiceDefinitionsPassTest.php
InlineServiceDefinitionsPassTest::testProcessDoesNotInlineWhenAliasedServiceIsNotOfPrototypeScope in vendor/symfony/dependency-injection/Tests/Compiler/InlineServiceDefinitionsPassTest.php

... See full list

File

vendor/symfony/dependency-injection/Tests/Compiler/InlineServiceDefinitionsPassTest.php, line 240

Class

InlineServiceDefinitionsPassTest

Namespace

Symfony\Component\DependencyInjection\Tests\Compiler

Code

protected function process(ContainerBuilder $container) {
  $repeatedPass = new RepeatedPass(array(
    new AnalyzeServiceReferencesPass(),
    new InlineServiceDefinitionsPass(),
  ));
  $repeatedPass
    ->process($container);
}