| 1 | <?php |
||
| 10 | class DefaultController |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var ShibbolethServiceProvider |
||
| 14 | */ |
||
| 15 | protected $shibbolethServiceProvider; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var EngineInterface |
||
| 19 | */ |
||
| 20 | protected $templating; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var bool |
||
| 24 | */ |
||
| 25 | protected $debug; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param ShibbolethServiceProvider $shibbolethServiceProvider |
||
| 29 | * @param EngineInterface $templating |
||
| 30 | * @param boolean $debug |
||
| 31 | */ |
||
| 32 | public function __construct(ShibbolethServiceProvider $shibbolethServiceProvider, EngineInterface $templating, $debug) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return Response |
||
| 41 | * @throws UnauthorizedHttpException |
||
| 42 | */ |
||
| 43 | public function indexAction() |
||
| 55 | } |
||
| 56 |