
Dlaczego taki zapis działa ?
$request = Request::factory('item/get_box_profile'); $request->execute(); $this->template->log_in = $request->response;
A taki nie

$request = Request::factory('item/get_box_profile')->execute()->respons; $this->template->log_in = $request;
Kiego wafla chodzi ? I czego w klasie kohana Request i Respons nie ma ani takiej zmiennej jak respons ani takiej metody

Jest to dla mnie zastanawiające
