You are here

public function History::clear in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/browser-kit/History.php \Symfony\Component\BrowserKit\History::clear()

Clears the history.

File

vendor/symfony/browser-kit/History.php, line 27

Class

History
History.

Namespace

Symfony\Component\BrowserKit

Code

public function clear() {
  $this->stack = array();
  $this->position = -1;
}