Goes back in the history.
LogicException if the stack is already on the first page
public function back() : Request { if ($this->position < 1) { throw new LogicException('You are already on the first page.'); } return clone $this->stack[--$this->position]; }