Skip to content

Commit d5249b0

Browse files
[Console][DoctrineBridge][PhpUnitBridge] Remove backticks from exception messages
1 parent 516a268 commit d5249b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Application.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public function setCommandLoader(CommandLoaderInterface $commandLoader)
121121
public function getSignalRegistry(): SignalRegistry
122122
{
123123
if (!$this->signalRegistry) {
124-
throw new RuntimeException('Signals are not supported. Make sure that the `pcntl` extension is installed and that "pcntl_*" functions are not disabled by your php.ini\'s "disable_functions" directive.');
124+
throw new RuntimeException('Signals are not supported. Make sure that the "pcntl" extension is installed and that "pcntl_*" functions are not disabled by your php.ini\'s "disable_functions" directive.');
125125
}
126126

127127
return $this->signalRegistry;
@@ -1003,7 +1003,7 @@ protected function doRunCommand(Command $command, InputInterface $input, OutputI
10031003
$commandSignals = $command instanceof SignalableCommandInterface ? $command->getSubscribedSignals() : [];
10041004
if ($commandSignals || $this->dispatcher && $this->signalsToDispatchEvent) {
10051005
if (!$this->signalRegistry) {
1006-
throw new RuntimeException('Unable to subscribe to signal events. Make sure that the `pcntl` extension is installed and that "pcntl_*" functions are not disabled by your php.ini\'s "disable_functions" directive.');
1006+
throw new RuntimeException('Unable to subscribe to signal events. Make sure that the "pcntl" extension is installed and that "pcntl_*" functions are not disabled by your php.ini\'s "disable_functions" directive.');
10071007
}
10081008

10091009
if (Terminal::hasSttyAvailable()) {

0 commit comments

Comments
 (0)