Icicle\Http\Client\CookieJar::get PHP Method

get() public method

public get ( string $name ) : Icicle\Http\Message\Cookie\MetaCookie | null
$name string
return Icicle\Http\Message\Cookie\MetaCookie | null
    public function get($name)
    {
        $name = (string) $name;
        return isset($this->cookies[$name]) ? $this->cookies[$name] : null;
    }