Version 5.1 - All the GraphQL #32

Closed
timw4mail wants to merge 1160 commits from develop into master
4 changed files with 12 additions and 12 deletions
Showing only changes of commit 43d48ee882 - Show all commits

View File

@ -97,7 +97,7 @@ class AnimeClientTestCase extends TestCase
$container = $di($config_array);
// Use mock session handler
$container->set('session-handler', static function (): \Aviat\AnimeClient\Tests\TestSessionHandler {
$container->set('session-handler', static function (): TestSessionHandler {
$session_handler = new TestSessionHandler();
session_set_save_handler($session_handler, TRUE);

View File

@ -92,7 +92,7 @@ class IonTestCase extends TestCase
// Set up DI container
$di = require 'di.php';
$container = $di($config_array);
$container->set('session-handler', static function (): \Aviat\Ion\Tests\TestSessionHandler {
$container->set('session-handler', static function (): TestSessionHandler {
// Use mock session handler
$session_handler = new TestSessionHandler();
session_set_save_handler($session_handler, TRUE);