8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1457491 commit d975ca7Copy full SHA for d975ca7
src/Symfony/Component/Console/Command/DumpCompletionCommand.php
@@ -41,7 +41,7 @@ protected function configure()
41
{
42
$fullCommand = $_SERVER['PHP_SELF'];
43
$commandName = basename($fullCommand);
44
- $fullCommand = realpath($fullCommand) ?: $fullCommand;
+ $fullCommand = @realpath($fullCommand) ?: $fullCommand;
45
46
$this
47
->setHelp(<<<EOH
0 commit comments