1
0
mirror of https://github.com/flarum/core.git synced 2025-08-08 01:16:52 +02:00

feat: customizable session driver (#3610)

This commit is contained in:
Sami Mazouz
2022-09-14 18:10:30 +01:00
committed by GitHub
parent 84c31165e5
commit f6761843b2
7 changed files with 340 additions and 9 deletions

View File

@@ -148,7 +148,7 @@ abstract class TestCase extends \PHPUnit\Framework\TestCase
*/
protected function config(string $key, $value)
{
$this->config[$key] = $value;
Arr::set($this->config, $key, $value);
}
/**