items = $items; $this->next = $next; } public function isEmpty () { return empty ($this->items); } public function items () { return $this->items; } public function render ($view, $getteur) { $view = APP_PATH . '/views/helpers/'.$view; if (file_exists ($view)) { include ($view); } } }