Skip to content

Commit 2a6f88a

Browse files
Minor CS fixes
1 parent f542ffc commit 2a6f88a

File tree

5 files changed

+11
-12
lines changed

5 files changed

+11
-12
lines changed

Messenger/RunCommandMessage.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
class RunCommandMessage implements \Stringable
2020
{
2121
/**
22-
* @param bool $throwOnFailure If the command has a non-zero exit code, throw {@see RunCommandFailedException}
23-
* @param bool $catchExceptions @see Application::setCatchExceptions()
22+
* @param bool $throwOnFailure If the command has a non-zero exit code, throw {@see RunCommandFailedException}
23+
* @param bool $catchExceptions @see Application::setCatchExceptions()
2424
*/
2525
public function __construct(
2626
public readonly string $input,

Tests/ApplicationTest.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ protected function tearDown(): void
7474
if (9 === $i) {
7575
continue;
7676
}
77-
pcntl_signal($i, SIG_DFL);
77+
pcntl_signal($i, \SIG_DFL);
7878
}
7979
}
8080
}
@@ -948,7 +948,7 @@ public function testRenderAnonymousException()
948948
$application = new Application();
949949
$application->setAutoExit(false);
950950
$application->register('foo')->setCode(function () {
951-
throw new class('') extends \InvalidArgumentException { };
951+
throw new class('') extends \InvalidArgumentException {};
952952
});
953953
$tester = new ApplicationTester($application);
954954

@@ -958,7 +958,7 @@ public function testRenderAnonymousException()
958958
$application = new Application();
959959
$application->setAutoExit(false);
960960
$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));
962962
});
963963
$tester = new ApplicationTester($application);
964964

@@ -974,7 +974,7 @@ public function testRenderExceptionStackTraceContainsRootException()
974974
$application = new Application();
975975
$application->setAutoExit(false);
976976
$application->register('foo')->setCode(function () {
977-
throw new class('') extends \InvalidArgumentException { };
977+
throw new class('') extends \InvalidArgumentException {};
978978
});
979979
$tester = new ApplicationTester($application);
980980

@@ -984,7 +984,7 @@ public function testRenderExceptionStackTraceContainsRootException()
984984
$application = new Application();
985985
$application->setAutoExit(false);
986986
$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));
988988
});
989989
$tester = new ApplicationTester($application);
990990

@@ -2081,7 +2081,7 @@ public function testSetSignalsToDispatchEvent()
20812081

20822082
// And now we test without the blank handler
20832083
$blankHandlerSignaled = false;
2084-
pcntl_signal(\SIGUSR1, SIG_DFL);
2084+
pcntl_signal(\SIGUSR1, \SIG_DFL);
20852085

20862086
$application = $this->createSignalableApplication($command, $dispatcher);
20872087
$application->setSignalsToDispatchEvent(\SIGUSR1);
@@ -2344,7 +2344,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
23442344

23452345
for ($i = 0; $i <= 10 && $this->shouldContinue; ++$i) {
23462346
$output->writeln('Still processing...');
2347-
posix_kill(posix_getpid(), SIGINT);
2347+
posix_kill(posix_getpid(), \SIGINT);
23482348
}
23492349

23502350
$output->writeln('Wrapping up, wait a sec...');

Tests/ConsoleEventsTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ protected function tearDown(): void
3939
if (9 === $i) {
4040
continue;
4141
}
42-
pcntl_signal($i, SIG_DFL);
42+
pcntl_signal($i, \SIG_DFL);
4343
}
4444
}
4545
}

Tests/SignalRegistry/SignalRegistryTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ protected function tearDown(): void
2727
if (9 === $i) {
2828
continue;
2929
}
30-
pcntl_signal($i, SIG_DFL);
30+
pcntl_signal($i, \SIG_DFL);
3131
}
3232
}
3333

Tests/Style/SymfonyStyleTest.php

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
use Symfony\Component\Console\Output\StreamOutput;
2626
use Symfony\Component\Console\Style\SymfonyStyle;
2727
use Symfony\Component\Console\Tester\CommandTester;
28-
use Symfony\Component\Console\Tests\Command\CommandTest;
2928

3029
class SymfonyStyleTest extends TestCase
3130
{

0 commit comments

Comments
 (0)