You are here

public function Browser::__construct in Zircon Profile 8.0

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

Parameters

string $phantomJSHost:

mixed $logger:

File

vendor/jcalderonzumba/gastonjs/src/Browser/Browser.php, line 30

Class

Browser
Class Browser @package Zumba\GastonJS

Namespace

Zumba\GastonJS\Browser

Code

public function __construct($phantomJSHost, $logger = null) {
  $this->phantomJSHost = $phantomJSHost;
  $this->logger = $logger;
  $this->debug = false;
  $this
    ->createApiClient();
}