File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ Listeners receive a
190190
191191If you use the Console component inside a Symfony application, commands can
192192handle signals themselves. To do so, implement the
193- `` SignalableCommandInterface ` ` and subscribe to one or more signals::
193+ :class: ` Symfony \\ Component \\ Console \\ Command \\ SignalableCommandInterface ` and subscribe to one or more signals::
194194
195195 // src/Command/SomeCommand.php
196196 namespace App\Command;
@@ -208,7 +208,7 @@ handle signals themselves. To do so, implement the
208208 return [\SIGINT, \SIGTERM];
209209 }
210210
211- public function handleSignal(int $signal)
211+ public function handleSignal(int $signal): void
212212 {
213213 if (\SIGINT === $signal) {
214214 // ...
You can’t perform that action at this time.
0 commit comments