From 0479e23974ac5803a43fe3043410a1800a58906c Mon Sep 17 00:00:00 2001 From: Oleg Baturin Date: Fri, 25 Oct 2024 19:57:59 +0700 Subject: [PATCH] fix styles --- tests/Middleware/RouterTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Middleware/RouterTest.php b/tests/Middleware/RouterTest.php index 0466d1c..becc687 100644 --- a/tests/Middleware/RouterTest.php +++ b/tests/Middleware/RouterTest.php @@ -244,7 +244,9 @@ public function testImmutability(): void { $original = $this->createRouterMiddleware(); - $this->assertNotSame($original, $original + $this->assertNotSame( + $original, + $original ->ignoreMethodFailureHandle() ->withNotAllowedResponseFactory($this->createNotAllowedResponseFactory()) ->withOptionsResponseFactory($this->createOptionsResponseFactory())