20 lines
243 B
PHP
20 lines
243 B
PHP
<?php
|
|
class IndexController
|
|
{
|
|
/**
|
|
* @route /
|
|
* @route /index
|
|
*/
|
|
public function indexAction()
|
|
{
|
|
$this->context->subTitle = 'home';
|
|
}
|
|
|
|
/**
|
|
* @route /help
|
|
*/
|
|
public function helpAction()
|
|
{
|
|
$this->context->subTitle = 'help';
|
|
}
|
|
}
|