Overwrite constructor of Memory session handling so no session ini-setting in backend/testing environments are possible

This commit is contained in:
nupplaPhil 2019-12-10 23:35:16 +01:00
parent af1299c697
commit 02c40ad1cb
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
2 changed files with 9 additions and 1 deletions

View 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