Bluz\Controller\Controller::__construct PHP Method

__construct() public method

Constructor of Statement
public __construct ( string $module, string $controller )
$module string
$controller string
    public function __construct($module, $controller)
    {
        $this->module = $module;
        $this->controller = $controller;
        $this->template = $controller . '.phtml';
        // initial default helper path
        $this->addHelperPath(dirname(__FILE__) . '/Helper/');
    }