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