You are here

public function BrowserNavigateTrait::goForward in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/jcalderonzumba/gastonjs/src/Browser/BrowserNavigateTrait.php \Zumba\GastonJS\Browser\BrowserNavigateTrait::goForward()

Goes forward on the browser history if possible

Return value

mixed

Throws

BrowserError

\Exception

File

vendor/jcalderonzumba/gastonjs/src/Browser/BrowserNavigateTrait.php, line 46

Class

BrowserNavigateTrait
Trait BrowserNavigateTrait @package Zumba\GastonJS\Browser

Namespace

Zumba\GastonJS\Browser

Code

public function goForward() {
  return $this
    ->command('go_forward');
}