We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VENDORPATH\myth\auth\src\Authentication\AuthenticationBase.php at line 230
223 $response = service('response'); 224 225 // Create the cookie 226 $response->setCookie( 227 'remember', // Cookie Name 228 $token, // Value 229 $this->config->rememberLength, // # Seconds until it expires 230 $appConfig->cookieDomain, 231 $appConfig->cookiePath, 232 $appConfig->cookiePrefix, 233 $appConfig->cookieSecure, // Only send over HTTPS? 234 true // Hide from Javascript? 235 ); 236 } 237
The text was updated successfully, but these errors were encountered:
No branches or pull requests
VENDORPATH\myth\auth\src\Authentication\AuthenticationBase.php at line 230
223 $response = service('response');
224
225 // Create the cookie
226 $response->setCookie(
227 'remember', // Cookie Name
228 $token, // Value
229 $this->config->rememberLength, // # Seconds until it expires
230 $appConfig->cookieDomain,
231 $appConfig->cookiePath,
232 $appConfig->cookiePrefix,
233 $appConfig->cookieSecure, // Only send over HTTPS?
234 true // Hide from Javascript?
235 );
236 }
237
The text was updated successfully, but these errors were encountered: