Fix some remaining formatting issues

This commit is contained in:
Timothy Warren 2023-05-19 10:57:59 -04:00
parent 77c6419c80
commit 4fef2b2942
4 changed files with 12 additions and 12 deletions

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

@ -30,8 +30,8 @@ use TypeError;
final class FooTest
{
public function __construct(public $item)
{
}
{
}
}
class FooTest2
@ -162,7 +162,7 @@ final class ContainerTest extends IonTestCase
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(ContainerInterface::class, $container);

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);

View File

@ -16,13 +16,13 @@ return static function (array $config_array = []) {
$container->setInstance('config', new Config($config_array));
$container->set('request', static fn() => ServerRequestFactory::fromGlobals(
$GLOBALS['_SERVER'],
$_GET,
$_POST,
$_COOKIE,
$_FILES
));
$container->set('request', static fn () => ServerRequestFactory::fromGlobals(
$GLOBALS['_SERVER'],
$_GET,
$_POST,
$_COOKIE,
$_FILES
));
$container->set('response', static fn () => new Response());