You are here

public function Client::forward in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/browser-kit/Client.php \Symfony\Component\BrowserKit\Client::forward()

Goes forward in the browser history.

Return value

Crawler

File

vendor/symfony/browser-kit/Client.php, line 423

Class

Client
Client simulates a browser.

Namespace

Symfony\Component\BrowserKit

Code

public function forward() {
  return $this
    ->requestFromRequest($this->history
    ->forward(), false);
}