You are here

public function ParameterBagTest::getInvalidPaths in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-foundation/Tests/ParameterBagTest.php \Symfony\Component\HttpFoundation\Tests\ParameterBagTest::getInvalidPaths()

File

vendor/symfony/http-foundation/Tests/ParameterBagTest.php, line 99

Class

ParameterBagTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function getInvalidPaths() {
  return array(
    array(
      'foo[[',
    ),
    array(
      'foo[d',
    ),
    array(
      'foo[bar]]',
    ),
    array(
      'foo[bar]d',
    ),
  );
}