public function RoutableFragmentRendererTest::getGenerateFragmentUriDataWithNonScalar in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-kernel/Tests/Fragment/RoutableFragmentRendererTest.php \Symfony\Component\HttpKernel\Tests\Fragment\RoutableFragmentRendererTest::getGenerateFragmentUriDataWithNonScalar()
File
- vendor/
symfony/ http-kernel/ Tests/ Fragment/ RoutableFragmentRendererTest.php, line 66
Class
Namespace
Symfony\Component\HttpKernel\Tests\FragmentCode
public function getGenerateFragmentUriDataWithNonScalar() {
return array(
array(
new ControllerReference('controller', array(
'foo' => new Foo(),
'bar' => 'bar',
), array()),
),
array(
new ControllerReference('controller', array(
'foo' => array(
'foo' => 'foo',
),
'bar' => array(
'bar' => new Foo(),
),
), array()),
),
);
}