Neos\Flow\Tests\Unit\Http\CookieTest::createCookieFromRawSetsSecureIfPresent PHP 메소드

createCookieFromRawSetsSecureIfPresent() 공개 메소드

    public function createCookieFromRawSetsSecureIfPresent()
    {
        $cookie = Cookie::createFromRawSetCookieHeader('ckName=someValue; Secure; more=nothing');
        $this->assertTrue($cookie->isSecure());
    }