private function ContainerAwareHttpKernelTest::expectsEnterScopeOnce in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-kernel/Tests/DependencyInjection/ContainerAwareHttpKernelTest.php \Symfony\Component\HttpKernel\Tests\DependencyInjection\ContainerAwareHttpKernelTest::expectsEnterScopeOnce()
File
- vendor/
symfony/ http-kernel/ Tests/ DependencyInjection/ ContainerAwareHttpKernelTest.php, line 147
Class
- ContainerAwareHttpKernelTest
- @group legacy
Namespace
Symfony\Component\HttpKernel\Tests\DependencyInjectionCode
private function expectsEnterScopeOnce($container) {
$container
->expects($this
->once())
->method('enterScope')
->with($this
->equalTo('request'));
return $this;
}