Remove SessionHandler::getAcpSessions()
authorTim Düsterhus <duesterhus@woltlab.com>
Thu, 22 Apr 2021 13:45:48 +0000 (15:45 +0200)
committerTim Düsterhus <duesterhus@woltlab.com>
Thu, 22 Apr 2021 13:49:16 +0000 (15:49 +0200)
There's no such thing like an ACP session any longer. This method was added in
5.4 and thus can directly be removed again.

see dca6c80bfded3d7895487e12c78874a884060be2

wcfsetup/install/files/lib/system/session/SessionHandler.class.php

index 1be28d4099c43dfa534e56429645f84769b966a2..e0883c8a14de4bd7475da05def9d22a23212e974 100644 (file)
@@ -1406,18 +1406,6 @@ final class SessionHandler extends SingletonFactory
         return $this->getSessions($user, false);
     }
 
-    /**
-     * Returns all acp sessions for a specific user.
-     *
-     * @return      Session[]
-     * @throws      \InvalidArgumentException if the given user is a guest.
-     * @since       5.4
-     */
-    public function getAcpSessions(User $user): array
-    {
-        return $this->getSessions($user, true);
-    }
-
     /**
      * Returns all sessions for a specific user.
      *