public function PhpDumperTest::testOverrideServiceWhenUsingADumpedContainer in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/dependency-injection/Tests/Dumper/PhpDumperTest.php \Symfony\Component\DependencyInjection\Tests\Dumper\PhpDumperTest::testOverrideServiceWhenUsingADumpedContainer()
File
- vendor/
symfony/ dependency-injection/ Tests/ Dumper/ PhpDumperTest.php, line 183
Class
Namespace
Symfony\Component\DependencyInjection\Tests\DumperCode
public function testOverrideServiceWhenUsingADumpedContainer() {
require_once self::$fixturesPath . '/php/services9.php';
require_once self::$fixturesPath . '/includes/foo.php';
$container = new \ProjectServiceContainer();
$container
->set('bar', $bar = new \stdClass());
$container
->setParameter('foo_bar', 'foo_bar');
$this
->assertEquals($bar, $container
->get('bar'), '->set() overrides an already defined service');
}