@@ -74,7 +74,7 @@ protected function tearDown(): void
74
74
if (9 === $ i ) {
75
75
continue ;
76
76
}
77
- pcntl_signal ($ i , SIG_DFL );
77
+ pcntl_signal ($ i , \ SIG_DFL );
78
78
}
79
79
}
80
80
}
@@ -948,7 +948,7 @@ public function testRenderAnonymousException()
948
948
$ application = new Application ();
949
949
$ application ->setAutoExit (false );
950
950
$ application ->register ('foo ' )->setCode (function () {
951
- throw new class ('' ) extends \InvalidArgumentException { };
951
+ throw new class ('' ) extends \InvalidArgumentException {};
952
952
});
953
953
$ tester = new ApplicationTester ($ application );
954
954
@@ -958,7 +958,7 @@ public function testRenderAnonymousException()
958
958
$ application = new Application ();
959
959
$ application ->setAutoExit (false );
960
960
$ application ->register ('foo ' )->setCode (function () {
961
- throw new \InvalidArgumentException (sprintf ('Dummy type "%s" is invalid. ' , (new class () { })::class));
961
+ throw new \InvalidArgumentException (sprintf ('Dummy type "%s" is invalid. ' , (new class () {})::class));
962
962
});
963
963
$ tester = new ApplicationTester ($ application );
964
964
@@ -974,7 +974,7 @@ public function testRenderExceptionStackTraceContainsRootException()
974
974
$ application = new Application ();
975
975
$ application ->setAutoExit (false );
976
976
$ application ->register ('foo ' )->setCode (function () {
977
- throw new class ('' ) extends \InvalidArgumentException { };
977
+ throw new class ('' ) extends \InvalidArgumentException {};
978
978
});
979
979
$ tester = new ApplicationTester ($ application );
980
980
@@ -984,7 +984,7 @@ public function testRenderExceptionStackTraceContainsRootException()
984
984
$ application = new Application ();
985
985
$ application ->setAutoExit (false );
986
986
$ application ->register ('foo ' )->setCode (function () {
987
- throw new \InvalidArgumentException (sprintf ('Dummy type "%s" is invalid. ' , (new class () { })::class));
987
+ throw new \InvalidArgumentException (sprintf ('Dummy type "%s" is invalid. ' , (new class () {})::class));
988
988
});
989
989
$ tester = new ApplicationTester ($ application );
990
990
@@ -2081,7 +2081,7 @@ public function testSetSignalsToDispatchEvent()
2081
2081
2082
2082
// And now we test without the blank handler
2083
2083
$ blankHandlerSignaled = false ;
2084
- pcntl_signal (\SIGUSR1 , SIG_DFL );
2084
+ pcntl_signal (\SIGUSR1 , \ SIG_DFL );
2085
2085
2086
2086
$ application = $ this ->createSignalableApplication ($ command , $ dispatcher );
2087
2087
$ application ->setSignalsToDispatchEvent (\SIGUSR1 );
@@ -2344,7 +2344,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
2344
2344
2345
2345
for ($ i = 0 ; $ i <= 10 && $ this ->shouldContinue ; ++$ i ) {
2346
2346
$ output ->writeln ('Still processing... ' );
2347
- posix_kill (posix_getpid (), SIGINT );
2347
+ posix_kill (posix_getpid (), \ SIGINT );
2348
2348
}
2349
2349
2350
2350
$ output ->writeln ('Wrapping up, wait a sec... ' );
0 commit comments