You are here

public function ControllerResolverTest::getUndefinedControllers in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/http-kernel/Tests/Controller/ControllerResolverTest.php \Symfony\Component\HttpKernel\Tests\Controller\ControllerResolverTest::getUndefinedControllers()

File

vendor/symfony/http-kernel/Tests/Controller/ControllerResolverTest.php, line 125

Class

ControllerResolverTest

Namespace

Symfony\Component\HttpKernel\Tests\Controller

Code

public function getUndefinedControllers() {
  return array(
    array(
      'foo',
    ),
    array(
      'foo::bar',
    ),
    array(
      'stdClass',
    ),
    array(
      'Symfony\\Component\\HttpKernel\\Tests\\Controller\\ControllerResolverTest::bar',
    ),
  );
}