Amp\Artax\Cookie\ArrayCookieJar::remove PHP 메소드

remove() 공개 메소드

Remove a specific cookie from storage
public remove ( Cookie $cookie ) : void
$cookie Cookie
리턴 void
    public function remove(Cookie $cookie)
    {
        unset($this->cookies[$cookie->getDomain()][$cookie->getPath()][$cookie->getName()]);
    }