@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | $output->writeln('It seems that Aenthill does not know how or where to store this new service. You need to install a dedicated Aent for this.'); |
38 | 38 | $output->writeln('Most of the time, you want to put this service in a docker-compose.yml file. We have a pretty good Aent for this: <info>theaentmachine/aent-docker-compose</info>.'); |
39 | 39 | $question = new Question('Do you want me to add this Aent for you? (y/n) ', 'y'); |
40 | - $question->setValidator(function (string $value) { |
|
40 | + $question->setValidator(function(string $value) { |
|
41 | 41 | $value = \strtolower(trim($value)); |
42 | 42 | |
43 | 43 | if ($value !== 'y' && $value !== 'n') { |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | $output->writeln('It seems that Aenthill does not know how to bind your container to a domain name. You need to install a reverse proxy for this.'); |
87 | 87 | $output->writeln('Traefik is a good reverse proxy. We have an Aent to add Traefik to your project: <info>theaentmachine/aent-traefik</info>.'); |
88 | 88 | $question = new Question('Do you want me to add this Aent for you? (y/n) ', 'y'); |
89 | - $question->setValidator(function (string $value) { |
|
89 | + $question->setValidator(function(string $value) { |
|
90 | 90 | $value = \strtolower(trim($value)); |
91 | 91 | |
92 | 92 | if ($value !== 'y' && $value !== 'n') { |