]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Session/Type/Memory.php
Merge pull request #11106 from annando/issue-11101
[friendica.git] / src / Core / Session / Type / Memory.php
index 635d880e7add7f5898a581018d1027a2aa6532a0..4d4020144b30516ff834cf37e6653fa73f10357f 100644 (file)
 
 namespace Friendica\Core\Session\Type;
 
-use Friendica\Core\Session\ISession;
+use Friendica\Core\Session\Capability\IHandleSessions;
 
 /**
  * Usable for backend processes (daemon/worker) and testing
  *
  * @todo after replacing the last direct $_SESSION call, use a internal array instead of the global variable
  */
-class Memory extends AbstractSession implements ISession
+class Memory extends AbstractSession implements IHandleSessions
 {
        public function __construct()
        {