summaryrefslogtreecommitdiff
path: root/tests/Unit/RouteCallTest.php
diff options
context:
space:
mode:
authorSam Light <sam@lightscale.co.uk>2026-06-10 19:00:32 +0100
committerSam Light <sam@lightscale.co.uk>2026-06-10 19:00:32 +0100
commit7a19b83bf7d7d8a2650356168cdb296b6f82807f (patch)
tree81891e5791d18daa8ec34497131fb65615039858 /tests/Unit/RouteCallTest.php
parent8c0efd0d9317ad92bd55cd6afcd41bdbab827bf8 (diff)
code formatting
Diffstat (limited to 'tests/Unit/RouteCallTest.php')
-rw-r--r--tests/Unit/RouteCallTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Unit/RouteCallTest.php b/tests/Unit/RouteCallTest.php
index 70cc50e..ece0b91 100644
--- a/tests/Unit/RouteCallTest.php
+++ b/tests/Unit/RouteCallTest.php
@@ -8,7 +8,7 @@ use Lightscale\Router\RouteCall;
use Nyholm\Psr7\Factory\Psr17Factory;
it('initializes with data', function () {
- $factory = new Psr17Factory;
+ $factory = new Psr17Factory();
$call = new RouteCall(
request: $req = $factory->createServerRequest(HttpMethod::Get->value, '/test/test'),
route: $route = new Route(HttpMethod::Get, fn () => null),