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:
Simon Erkelens 2017-06-10 12:58:22 +12:00 committed by GitHub
parent c7f7233c4d
commit 5c4e55b60d

View File

@ -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;