Merge pull request #7006 from Firesphere/patch-1

FIX Not `CascadeLogInTo` anymore, but `CascadeInTo`
This commit is contained in:
Damian Mooyman 2017-06-10 13:43:48 +12:00 committed by GitHub
commit 4733abd79f

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;