private function ContainerAwareHttpKernelTest::expectsSetRequestWithAt 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::expectsSetRequestWithAt()
File
- vendor/
symfony/ http-kernel/ Tests/ DependencyInjection/ ContainerAwareHttpKernelTest.php, line 136
Class
- ContainerAwareHttpKernelTest
- @group legacy
Namespace
Symfony\Component\HttpKernel\Tests\DependencyInjectionCode
private function expectsSetRequestWithAt($container, $with, $at) {
$container
->expects($this
->at($at))
->method('set')
->with($this
->equalTo('request'), $this
->equalTo($with), $this
->equalTo('request'));
return $this;
}