mirror of
https://github.com/friendica/friendica
synced 2025-04-26 18:30:11 +00:00
Overwrite constructor of Memory session handling so no session ini-setting in backend/testing environments are possible
This commit is contained in:
parent
af1299c697
commit
02c40ad1cb
2 changed files with 9 additions and 1 deletions
|
@ -62,7 +62,7 @@ class ApiTest extends DatabaseTest
|
|||
$this->dice = (new Dice())
|
||||
->addRules(include __DIR__ . '/../../static/dependencies.config.php')
|
||||
->addRule(Database::class, ['instanceOf' => StaticDatabase::class, 'shared' => true])
|
||||
->addRule(ISession::class, ['instanceOf' => Session\Memory::class, 'shared' => true]);
|
||||
->addRule(ISession::class, ['instanceOf' => Session\Memory::class, 'shared' => true, 'call' => null]);
|
||||
BaseObject::setDependencyInjection($this->dice);
|
||||
|
||||
/** @var Database $dba */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue