@@ -897,8 +897,7 @@ public function testRenderAnonymousException()
897897        $ applicationnew  Application ();
898898        $ applicationsetAutoExit (false );
899899        $ applicationregister ('foo ' )->setCode (function  () {
900-             throw  new  class ('' ) extends  \InvalidArgumentException {
901-             };
900+             throw  new  class ('' ) extends  \InvalidArgumentException { };
902901        });
903902        $ testernew  ApplicationTester ($ application
904903
@@ -908,8 +907,7 @@ public function testRenderAnonymousException()
908907        $ applicationnew  Application ();
909908        $ applicationsetAutoExit (false );
910909        $ applicationregister ('foo ' )->setCode (function  () {
911-             throw  new  \InvalidArgumentException (sprintf ('Dummy type "%s" is invalid. ' , \get_class (new  class () {
912-             })));
910+             throw  new  \InvalidArgumentException (sprintf ('Dummy type "%s" is invalid. ' , \get_class (new  class () { })));
913911        });
914912        $ testernew  ApplicationTester ($ application
915913
@@ -922,8 +920,7 @@ public function testRenderExceptionStackTraceContainsRootException()
922920        $ applicationnew  Application ();
923921        $ applicationsetAutoExit (false );
924922        $ applicationregister ('foo ' )->setCode (function  () {
925-             throw  new  class ('' ) extends  \InvalidArgumentException {
926-             };
923+             throw  new  class ('' ) extends  \InvalidArgumentException { };
927924        });
928925        $ testernew  ApplicationTester ($ application
929926
@@ -933,8 +930,7 @@ public function testRenderExceptionStackTraceContainsRootException()
933930        $ applicationnew  Application ();
934931        $ applicationsetAutoExit (false );
935932        $ applicationregister ('foo ' )->setCode (function  () {
936-             throw  new  \InvalidArgumentException (sprintf ('Dummy type "%s" is invalid. ' , \get_class (new  class () {
937-             })));
933+             throw  new  \InvalidArgumentException (sprintf ('Dummy type "%s" is invalid. ' , \get_class (new  class () { })));
938934        });
939935        $ testernew  ApplicationTester ($ application
940936
0 commit comments