szurubooru/src/Controllers/IndexController.php

13 lines
171 B
PHP
Raw Normal View History

2013-10-05 19:24:08 +02:00
<?php
class IndexController extends AbstractController
{
/**
* @route /
* @route /index
*/
2013-10-05 21:22:28 +02:00
public function indexAction()
2013-10-05 19:24:08 +02:00
{
2013-10-05 21:22:28 +02:00
$this->context->subTitle = 'home';
2013-10-05 19:24:08 +02:00
}
}