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 f9be8a1 commit 642b6e7Copy full SHA for 642b6e7
phpdotnet/phd/Options/Parser.php
@@ -81,7 +81,7 @@ private function checkOptions() {
81
$checkArgv = explode('=', $argv[$i]);
82
if (substr($checkArgv[0], 0, 2) == '--') {
83
if (!in_array(substr($checkArgv[0], 2), $long)) {
84
- trigger_error('Invalid long option ' . $argv[$i] . ' ' . $check, E_USER_ERROR);
+ trigger_error('Invalid long option ' . $argv[$i], E_USER_ERROR);
85
}
86
} elseif (substr($checkArgv[0], 0, 1) == '-') {
87
if (!in_array(substr($checkArgv[0], 1), $short)) {
0 commit comments