]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Session/Memory.php
Overwrite constructor of Memory session handling so no session ini-setting in backend...
[friendica.git] / src / Core / Session / Memory.php
index b39234db23ea225957d7578560d79a668cda8e43..f8d02b55389596ba683870ecb0824cb899590cc1 100644 (file)
@@ -2,6 +2,9 @@
 
 namespace Friendica\Core\Session;
 
+use Friendica\Core\Config\Configuration;
+use Friendica\Model\User\Cookie;
+
 /**
  * Usable for backend processes (daemon/worker) and testing
  *
@@ -9,6 +12,11 @@ namespace Friendica\Core\Session;
  */
 final class Memory extends Native
 {
+       public function __construct(Configuration $config, Cookie $cookie)
+       {
+               $this->cookie = $cookie;
+       }
+
        public function start()
        {
                // Backward compatibility until all Session variables are replaced