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 9827e0b commit cbc9410Copy full SHA for cbc9410
src/Commands/InstallCommand.php
@@ -126,7 +126,10 @@ public function installSwooleServer()
126
*/
127
public function installFrankenPhpServer()
128
{
129
- if (! $this->confirm("FrankenPHP's Octane integration is in beta and should be used with caution in production. Do you wish to continue?")) {
+ if ($this->option('no-interaction')) {
130
+ $this->info("FrankenPHP's Octane integration is in beta and should be used with caution in production.");
131
+ $this->newLine();
132
+ } elseif (! $this->confirm("FrankenPHP's Octane integration is in beta and should be used with caution in production. Do you wish to continue?")) {
133
return false;
134
}
135
0 commit comments