From 4c4c4c23f6786442997afecfc30bfc3c9cd4c115 Mon Sep 17 00:00:00 2001 From: Marco Date: Sun, 25 Mar 2018 01:40:49 +0100 Subject: [PATCH] Explain removal of 'logOutAndDestroySession' in migration guide --- Migration.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Migration.md b/Migration.md index 0236d68..30a672e 100644 --- a/Migration.md +++ b/Migration.md @@ -38,6 +38,8 @@ Update your version of this library using Composer and its `composer update` or ADD COLUMN "force_logout" INTEGER NOT NULL CHECK ("force_logout" >= 0) DEFAULT "0"; ``` + * The method `logOutAndDestroySession` has been removed from class `Auth`. Instead, call the two separate methods `logOut` and `destroySession` from class `Auth` one after another for the same effect. + ## From `v6.x.x` to `v7.x.x` * The method `logOutButKeepSession` from class `Auth` is now simply called `logOut`. Therefore, the former method `logout` is now called `logOutAndDestroySession`.