. * */ namespace Friendica\Core\Session; /** * 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 { public function __construct() { // Backward compatibility until all Session variables are replaced // with the Session class $_SESSION = []; } }