Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. AbstractBrowser.php

function AbstractBrowser::forward

Goes forward in the browser history.

File

vendor/symfony/browser-kit/AbstractBrowser.php, line 533

Class

AbstractBrowser
Simulates a browser.

Namespace

Symfony\Component\BrowserKit

Code

public function forward() : Crawler {
    do {
        $request = $this->history
            ->forward();
    } while (\array_key_exists(serialize($request), $this->redirects));
    return $this->requestFromRequest($request, false);
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal