You are here

private function ContainerAwareHttpKernelTest::expectsSetRequestWithAt in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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\DependencyInjection

Code

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;
}