public function ParameterBagTest::testGetDeepWithInvalidPaths

@dataProvider getInvalidPaths @expectedException \InvalidArgumentException

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/ParameterBagTest.php, line 70

Class

ParameterBagTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testGetDeepWithInvalidPaths($path) {
  $bag = new ParameterBag(array(
    'foo' => array(
      'bar' => 'moo',
    ),
  ));
  $bag
    ->get($path, null, true);
}