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 0697438 commit cf62f08Copy full SHA for cf62f08
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