mirror of
https://github.com/pestphp/pest.git
synced 2026-03-13 03:07:22 +01:00
fix: tries getenv
This commit is contained in:
@ -46,7 +46,7 @@ final class Thanks
|
|||||||
$bootstrapper = new BootView($this->output);
|
$bootstrapper = new BootView($this->output);
|
||||||
$bootstrapper->boot();
|
$bootstrapper->boot();
|
||||||
|
|
||||||
$wantsToSupport = ! isset($_ENV['PEST_NO_SUPPORT']) && $this->input->isInteractive() && (new SymfonyQuestionHelper())->ask(
|
$wantsToSupport = getenv('PEST_NO_SUPPORT') !== 'true' && $this->input->isInteractive() && (new SymfonyQuestionHelper())->ask(
|
||||||
new ArrayInput([]),
|
new ArrayInput([]),
|
||||||
$this->output,
|
$this->output,
|
||||||
new ConfirmationQuestion(
|
new ConfirmationQuestion(
|
||||||
|
|||||||
Reference in New Issue
Block a user