Clue\React\Buzz\Browser::withoutBase PHP Method

withoutBase() public method

Creates a new Browser instance *without* a base URL
See also: self::withBase()
public withoutBase ( ) : self
return self
    public function withoutBase()
    {
        $browser = clone $this;
        $browser->baseUri = null;
        return $browser;
    }