@@ -29,7 +29,7 @@ protected function tearDown(): void
2929
3030 public function testSetSleepDuration (): void
3131 {
32- $ stubCommand = new class ('dummy:command ' ) extends AbstractTerminableCommand {
32+ $ stubCommand = new class ('dummy:command ' ) extends AbstractTerminableCommand {
3333 protected function commandBody (InputInterface $ input , OutputInterface $ output ): int
3434 {
3535 $ this ->setSleepDuration (100 );
@@ -60,7 +60,7 @@ protected function commandBody(InputInterface $input, OutputInterface $output):
6060
6161 public function testSetSleepDurationWithNegativeValue (): void
6262 {
63- $ stubCommand = new class ('dummy:command ' ) extends AbstractTerminableCommand {
63+ $ stubCommand = new class ('dummy:command ' ) extends AbstractTerminableCommand {
6464 protected function commandBody (InputInterface $ input , OutputInterface $ output ): int
6565 {
6666 $ this ->setSleepDuration (-1 );
@@ -83,7 +83,7 @@ protected function commandBody(InputInterface $input, OutputInterface $output):
8383 */
8484 public function testReceiveSignalDuringCommandBody (int $ signal ): void
8585 {
86- $ stubCommand = new class ($ signal ) extends AbstractTerminableCommand {
86+ $ stubCommand = new class ($ signal ) extends AbstractTerminableCommand {
8787 /** @var int */
8888 private $ signal ;
8989
@@ -117,7 +117,7 @@ protected function commandBody(InputInterface $input, OutputInterface $output):
117117 */
118118 public function testReceiveSignalBeforeCommandBody (int $ signal ): void
119119 {
120- $ stubCommand = new class ('dummy:command ' ) extends AbstractTerminableCommand {
120+ $ stubCommand = new class ('dummy:command ' ) extends AbstractTerminableCommand {
121121 protected function commandBody (InputInterface $ input , OutputInterface $ output ): int
122122 {
123123 return 0 ;
0 commit comments