Skip to content

Commit 2517a83

Browse files
committed
fix(test): set default values type to string
1 parent 22222a2 commit 2517a83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Command/AddCommandJobToQueueCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ protected function configure()
4949
't',
5050
InputOption::VALUE_OPTIONAL,
5151
'The timeout time for the command. Defaults to 60 seconds',
52-
60
52+
'60'
5353
)
5454
->addOption(
5555
'idle_timeout',
5656
'i',
5757
InputOption::VALUE_OPTIONAL,
5858
'The idle timeout time for the command. Defaults to 60 seconds',
59-
60
59+
'60'
6060
);
6161
}
6262

0 commit comments

Comments
 (0)