ice / framework

Source code of Ice framework
https://www.iceframework.org
BSD 3-Clause "New" or "Revised" License
341 stars 45 forks source link

Set reponse content in controller fail #168

Closed Yahasana closed 6 years ago

Yahasana commented 6 years ago

$this->response->setContent('bla bla zzz') in the controller will not work

class IndexController extends \Ice\Mvc\Controller {

    public function indexAction()
    {
        $this->response->setContent('bla bla zzz');
    }
}