brokencube/circuit

View on GitHub
src/Interfaces/Controller.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Circuit\Interfaces;

use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Psr\Container\ContainerInterface as Container;

interface Controller
{
    public function __construct(Container $container);
}