bookList = $bookList; $this->currentBook = $this->bookList->count() - 1; } public function next() { $this->currentBook--; } public function valid() { return 0 <= $this->currentBook; } }