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 1e41264 commit 06c6ee1Copy full SHA for 06c6ee1
src/support/php.ts
@@ -107,11 +107,6 @@ const getPhpCommand = (): string => {
107
command: `"{binaryPath}"`,
108
});
109
110
- options.set("local", {
111
- check: "php -r 'echo PHP_BINARY;'",
112
- command: `"{binaryPath}"`,
113
- });
114
-
115
options.set("sail", {
116
check: "./vendor/bin/sail ps",
117
command: "./vendor/bin/sail php",
@@ -122,6 +117,11 @@ const getPhpCommand = (): string => {
122
command: "lando ssh -c 'php {code}'",
123
118
124
119
120
+ options.set("local", {
121
+ check: "php -r 'echo PHP_BINARY;'",
+ command: `"{binaryPath}"`,
+ });
+
125
for (const [key, option] of options.entries()) {
126
if (phpEnv !== "auto" && phpEnv !== key) {
127
continue;
0 commit comments