@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | $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.'); |
39 | 39 | $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>.'); |
40 | 40 | $question = new Question('Do you want me to add this Aent for you? (y/n) ', 'y'); |
41 | - $question->setValidator(function (string $value) { |
|
41 | + $question->setValidator(function(string $value) { |
|
42 | 42 | $value = \strtolower(trim($value)); |
43 | 43 | |
44 | 44 | if ($value !== 'y' && $value !== 'n') { |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | $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.'); |
89 | 89 | $output->writeln('Traefik is a good reverse proxy. We have an Aent to add Traefik to your project: <info>theaentmachine/aent-traefik</info>.'); |
90 | 90 | $question = new Question('Do you want me to add this Aent for you? (y/n) ', 'y'); |
91 | - $question->setValidator(function (string $value) { |
|
91 | + $question->setValidator(function(string $value) { |
|
92 | 92 | $value = \strtolower(trim($value)); |
93 | 93 | |
94 | 94 | if ($value !== 'y' && $value !== 'n') { |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | $output->writeln('It seems that Aenthill does not know how to handle the creation of a new image. You need to install a dedicated Aent for this.'); |
130 | 130 | $output->writeln('Most of the time, you want to put the commands in a Dockerfile. We have a pretty good Aent for this: <info>theaentmachine/aent-dockerfile</info>.'); |
131 | 131 | $question = new Question('Do you want me to add this Aent for you? (y/n) ', 'y'); |
132 | - $question->setValidator(function (string $value) { |
|
132 | + $question->setValidator(function(string $value) { |
|
133 | 133 | $value = \strtolower(trim($value)); |
134 | 134 | |
135 | 135 | if ($value !== 'y' && $value !== 'n') { |