mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
It's not CascadeLogInTo
anymore, it's CascadeInTo
I'm mildly surprised this didn't break. I changed it to CascadeInTo, as the logout action needs to cascade into the session as well.
This commit is contained in:
parent
c7f7233c4d
commit
5c4e55b60d
@ -81,7 +81,7 @@ class CookieAuthenticationHandler implements AuthenticationHandler
|
||||
*
|
||||
* @return IdentityStore
|
||||
*/
|
||||
public function getCascadeLogInTo()
|
||||
public function getCascadeInTo()
|
||||
{
|
||||
return $this->cascadeInTo;
|
||||
}
|
||||
@ -92,7 +92,7 @@ class CookieAuthenticationHandler implements AuthenticationHandler
|
||||
* @param IdentityStore $cascadeInTo
|
||||
* @return $this
|
||||
*/
|
||||
public function setCascadeLogInTo(IdentityStore $cascadeInTo)
|
||||
public function setCascadeInTo(IdentityStore $cascadeInTo)
|
||||
{
|
||||
$this->cascadeInTo = $cascadeInTo;
|
||||
return $this;
|
||||
|
Loading…
x
Reference in New Issue
Block a user