public function ParameterBagTest::testGetDoesNotUseDeepByDefault in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-foundation/Tests/ParameterBagTest.php \Symfony\Component\HttpFoundation\Tests\ParameterBagTest::testGetDoesNotUseDeepByDefault()
File
- vendor/
symfony/ http-foundation/ Tests/ ParameterBagTest.php, line 81
Class
Namespace
Symfony\Component\HttpFoundation\TestsCode
public function testGetDoesNotUseDeepByDefault() {
$bag = new ParameterBag(array(
'foo' => array(
'bar' => 'moo',
),
));
$this
->assertNull($bag
->get('foo[bar]'));
}