Remove unnecessary method call

This is already the default value in the base SetCookie class.
This commit is contained in:
Franz Liedke 2016-12-29 11:17:27 +01:00
parent 817c2dda0e
commit 891d0990be

View File

@ -49,7 +49,6 @@ class CookieFactory
->withMaxAge($maxAge)
->withPath(array_get($url, 'path') ?: '/')
->withSecure(array_get($url, 'scheme') === 'https')
->withHttpOnly(true)
->withDomain(null);
->withHttpOnly(true);
}
}