Passed
Push — master ( 397ae4...2d3d0e )
by David
03:10 queued 01:05
created
src/CommonEvents.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
             $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.');
37 37
             $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>.');
38 38
             $question = new Question('Do you want me to add this Aent for you? (y/n) ', 'y');
39
-            $question->setValidator(function (string $value) {
39
+            $question->setValidator(function(string $value) {
40 40
                 $value = \strtolower(trim($value));
41 41
 
42 42
                 if ($value !== 'y' && $value !== 'n') {
Please login to merge, or discard this patch.