From 56af434e36028751bde92b56f54ef31dcf99a281 Mon Sep 17 00:00:00 2001 From: irazasyed Date: Sat, 9 Jul 2022 04:21:01 +0000 Subject: [PATCH] Apply PHP CS Fixer changes --- tests/Unit/Commands/CommandBusTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Unit/Commands/CommandBusTest.php b/tests/Unit/Commands/CommandBusTest.php index 253db711..d3964780 100644 --- a/tests/Unit/Commands/CommandBusTest.php +++ b/tests/Unit/Commands/CommandBusTest.php @@ -70,7 +70,7 @@ public function it_throws_an_exception_if_command_is_not_an_instance_of_command_ $this->expectException(TelegramSDKException::class); $this->bus->addCommand( new class() { - } + } ); }