Arachnid\Crawler::__construct PHP Method

__construct() public method

Constructor
public __construct ( string $baseUrl, integer $maxDepth = 3 )
$baseUrl string
$maxDepth integer
    public function __construct($baseUrl, $maxDepth = 3)
    {
        $this->baseUrl = $baseUrl;
        $this->maxDepth = $maxDepth;
        $this->links = array();
    }