Returns the current element in the history.
LogicException if the stack is empty
public function current() : Request { if (-1 === $this->position) { throw new LogicException('The page history is empty.'); } return clone $this->stack[$this->position]; }