process() (or check()) must have been called before.
function()
{
if ($this->check()) {
$this->obj = new \stdClass();
if (!\is_array($this->info)) {
$this->log("No info in MVC", $this->info);
throw new \Exception(X::_("No info in MVC"));
}
if (!$this->controller) {
$this->controller = new Controller($this, $this->info, $this->data);
}
$this->controller->process();
}
}