<?php

namespace Cherry\Controller;

class {controllerName}
{
    use ControllerTrait;

    public function hello()
    {
        $this->render('{controllerTitle}/index');
    }
}
