You are here

class Controller in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/http-kernel/Tests/HttpKernelTest.php \Symfony\Component\HttpKernel\Tests\Controller

Hierarchy

  • class \Symfony\Component\HttpKernel\Tests\Controller

Expanded class hierarchy of Controller

File

vendor/symfony/http-kernel/Tests/HttpKernelTest.php, line 298

Namespace

Symfony\Component\HttpKernel\Tests
View source
class Controller {
  public function __invoke() {
    return new Response('foo');
  }
  public function controller() {
    return new Response('foo');
  }
  public static function staticController() {
    return new Response('foo');
  }

}

Members