Version 5.1 - All the GraphQL #32
@ -97,7 +97,7 @@ class AnimeClientTestCase extends TestCase
|
|||||||
$container = $di($config_array);
|
$container = $di($config_array);
|
||||||
|
|
||||||
// Use mock session handler
|
// 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_handler = new TestSessionHandler();
|
||||||
session_set_save_handler($session_handler, TRUE);
|
session_set_save_handler($session_handler, TRUE);
|
||||||
|
|
||||||
|
@ -30,8 +30,8 @@ use TypeError;
|
|||||||
final class FooTest
|
final class FooTest
|
||||||
{
|
{
|
||||||
public function __construct(public $item)
|
public function __construct(public $item)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class FooTest2
|
class FooTest2
|
||||||
@ -162,7 +162,7 @@ final class ContainerTest extends IonTestCase
|
|||||||
|
|
||||||
public function testGetSet(): void
|
public function testGetSet(): void
|
||||||
{
|
{
|
||||||
$container = $this->container->set('foo', static fn() => static function (): void {});
|
$container = $this->container->set('foo', static fn () => static function (): void {});
|
||||||
|
|
||||||
$this->assertInstanceOf(Container::class, $container);
|
$this->assertInstanceOf(Container::class, $container);
|
||||||
$this->assertInstanceOf(ContainerInterface::class, $container);
|
$this->assertInstanceOf(ContainerInterface::class, $container);
|
||||||
|
@ -92,7 +92,7 @@ class IonTestCase extends TestCase
|
|||||||
// Set up DI container
|
// Set up DI container
|
||||||
$di = require 'di.php';
|
$di = require 'di.php';
|
||||||
$container = $di($config_array);
|
$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
|
// Use mock session handler
|
||||||
$session_handler = new TestSessionHandler();
|
$session_handler = new TestSessionHandler();
|
||||||
session_set_save_handler($session_handler, TRUE);
|
session_set_save_handler($session_handler, TRUE);
|
||||||
|
@ -16,13 +16,13 @@ return static function (array $config_array = []) {
|
|||||||
|
|
||||||
$container->setInstance('config', new Config($config_array));
|
$container->setInstance('config', new Config($config_array));
|
||||||
|
|
||||||
$container->set('request', static fn() => ServerRequestFactory::fromGlobals(
|
$container->set('request', static fn () => ServerRequestFactory::fromGlobals(
|
||||||
$GLOBALS['_SERVER'],
|
$GLOBALS['_SERVER'],
|
||||||
$_GET,
|
$_GET,
|
||||||
$_POST,
|
$_POST,
|
||||||
$_COOKIE,
|
$_COOKIE,
|
||||||
$_FILES
|
$_FILES
|
||||||
));
|
));
|
||||||
|
|
||||||
$container->set('response', static fn () => new Response());
|
$container->set('response', static fn () => new Response());
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user