Completed
Push — master ( 507470...22a067 )
by Julien
13s
created
src/Registry/TagsAnalyzer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     public function filterBestTags(array $tags): array
18 18
     {
19 19
         // filter numeric versions only
20
-        $versions = \array_filter($tags, function (string $tag) {
20
+        $versions = \array_filter($tags, function(string $tag) {
21 21
             return \preg_match('/^\d+(\.\d+)*$/', $tag);
22 22
         });
23 23
 
Please login to merge, or discard this patch.
src/Registry/RegistryClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 
19 19
         $response = \GuzzleHttp\json_decode($res->getBody(), true);
20 20
 
21
-        $tags = \array_map(function (array $item) {
21
+        $tags = \array_map(function(array $item) {
22 22
             return $item['name'];
23 23
         }, $response);
24 24
 
Please login to merge, or discard this patch.
src/Aenthill/Aenthill.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
             throw new \RuntimeException('Payload object should implement JsonSerializable. Got an instance of ' . \get_class($payload));
127 127
         }
128 128
         $replies = self::dispatch($event, \GuzzleHttp\json_encode($payload));
129
-        return \array_map(function (string $reply) {
129
+        return \array_map(function(string $reply) {
130 130
             return \GuzzleHttp\json_decode($reply, true);
131 131
         }, $replies);
132 132
     }
Please login to merge, or discard this patch.
src/Service/Service.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
     public function __construct()
46 46
     {
47
-        $this->validatorSchema = \GuzzleHttp\json_decode((string)file_get_contents(__DIR__ . '/ServiceJsonSchema.json'), false);
47
+        $this->validatorSchema = \GuzzleHttp\json_decode((string) file_get_contents(__DIR__ . '/ServiceJsonSchema.json'), false);
48 48
     }
49 49
 
50 50
     /**
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
      */
93 93
     public function jsonSerialize(): array
94 94
     {
95
-        $jsonSerializeMap = function (\JsonSerializable $obj): array {
95
+        $jsonSerializeMap = function(\JsonSerializable $obj): array {
96 96
             return $obj->jsonSerialize();
97 97
         };
98 98
 
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
         $dockerfileCommands[] = 'FROM ' . $this->image;
136 136
         foreach ($this->environment as $key => $env) {
137 137
             if ($env->getType() === EnvVariableTypeEnum::IMAGE_ENV_VARIABLE) {
138
-                $dockerfileCommands[] = "ENV $key" . '='. $env->getValue();
138
+                $dockerfileCommands[] = "ENV $key" . '=' . $env->getValue();
139 139
             }
140 140
         }
141 141
         foreach ($this->volumes as $volume) {
Please login to merge, or discard this patch.
src/Question/ChoiceQuestion.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -86,9 +86,9 @@  discard block
 block discarded – undo
86 86
         $choices = $this->choices;
87 87
         $errorMessage = 'Value "%s" is invalid';
88 88
         $multiselect = $this->multiselect;
89
-        $isAssoc = (bool)count(array_filter(array_keys($this->choices), '\is_string'));
89
+        $isAssoc = (bool) count(array_filter(array_keys($this->choices), '\is_string'));
90 90
 
91
-        return function ($selected) use ($choices, $errorMessage, $multiselect, $isAssoc) {
91
+        return function($selected) use ($choices, $errorMessage, $multiselect, $isAssoc) {
92 92
 
93 93
             // Collapse all spaces.
94 94
             $selectedChoices = str_replace(' ', '', $selected);
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
                 if (false === $result) {
137 137
                     throw new InvalidArgumentException(sprintf($errorMessage, $value));
138 138
                 }
139
-                $multiselectChoices[] = (string)$result;
139
+                $multiselectChoices[] = (string) $result;
140 140
             }
141 141
             if ($multiselect) {
142 142
                 if ($this->printAnswer) {
Please login to merge, or discard this patch.
src/Command/AbstractEventCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,9 +71,9 @@
 block discarded – undo
71 71
      */
72 72
     public function getAllEventNames(): array
73 73
     {
74
-        return array_map(function (AbstractEventCommand $event) {
74
+        return array_map(function(AbstractEventCommand $event) {
75 75
             return $event->getEventName();
76
-        }, \array_filter($this->getApplication()->all(), function (Command $command) {
76
+        }, \array_filter($this->getApplication()->all(), function(Command $command) {
77 77
             return $command instanceof AbstractEventCommand && !$command->isHidden();
78 78
         }));
79 79
     }
Please login to merge, or discard this patch.
src/Exception/CannotHandleEventException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,6 +7,6 @@
 block discarded – undo
7 7
 {
8 8
     public static function cannotHandleEvent(string $eventName): self
9 9
     {
10
-        return new self('Could not find an Aent that can handle events of type "'.$eventName.'"');
10
+        return new self('Could not find an Aent that can handle events of type "' . $eventName . '"');
11 11
     }
12 12
 }
Please login to merge, or discard this patch.
src/Helper/ReplyAggregator.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -15,9 +15,9 @@  discard block
 block discarded – undo
15 15
     public function __construct(string $replyDirectory = null)
16 16
     {
17 17
         if ($replyDirectory === null) {
18
-            $replyDirectory = \sys_get_temp_dir().'/replies';
18
+            $replyDirectory = \sys_get_temp_dir() . '/replies';
19 19
         }
20
-        $this->replyDirectory = rtrim($replyDirectory, '/').'/';
20
+        $this->replyDirectory = rtrim($replyDirectory, '/') . '/';
21 21
         if (!\file_exists($replyDirectory)) {
22 22
             if (!mkdir($replyDirectory, 0777, true) && !is_dir($replyDirectory)) {
23 23
                 throw new \RuntimeException(sprintf('Directory "%s" was not created', $replyDirectory));
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function clear(): void
32 32
     {
33
-        $files = glob($this->replyDirectory.'*'); // get all file names
33
+        $files = glob($this->replyDirectory . '*'); // get all file names
34 34
         foreach ($files as $file) { // iterate files
35 35
             if (is_file($file)) {
36 36
                 unlink($file); // delete file
@@ -41,15 +41,15 @@  discard block
 block discarded – undo
41 41
     private function getNextFileName(): string
42 42
     {
43 43
         $i = 0;
44
-        while (\file_exists($this->replyDirectory.'tmp'.$i)) {
44
+        while (\file_exists($this->replyDirectory . 'tmp' . $i)) {
45 45
             $i++;
46 46
         }
47
-        return 'tmp'.$i;
47
+        return 'tmp' . $i;
48 48
     }
49 49
 
50 50
     public function storeReply(string $payload): void
51 51
     {
52
-        $path = $this->replyDirectory.$this->getNextFileName();
52
+        $path = $this->replyDirectory . $this->getNextFileName();
53 53
         \file_put_contents($path, $payload);
54 54
     }
55 55
 
@@ -60,10 +60,10 @@  discard block
 block discarded – undo
60 60
     {
61 61
         $i = 0;
62 62
         $replies = [];
63
-        while (\file_exists($this->replyDirectory.'tmp'.$i)) {
64
-            $content = \file_get_contents($this->replyDirectory.'tmp'.$i);
63
+        while (\file_exists($this->replyDirectory . 'tmp' . $i)) {
64
+            $content = \file_get_contents($this->replyDirectory . 'tmp' . $i);
65 65
             if ($content === false) {
66
-                throw new \RuntimeException('Failed to load file '.$this->replyDirectory.'tmp'.$i);
66
+                throw new \RuntimeException('Failed to load file ' . $this->replyDirectory . 'tmp' . $i);
67 67
             }
68 68
             $replies[] = $content;
69 69
             $i++;
Please login to merge, or discard this patch.
src/Question/Question.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
         $validator = $this->validator;
76 76
 
77 77
         if ($this->yesNoQuestion) {
78
-            $validator = function (?string $response) use ($validator) {
78
+            $validator = function(?string $response) use ($validator) {
79 79
                 $response = $response ?? '';
80 80
                 $response = \strtolower(trim($response));
81 81
                 if (!\in_array($response, ['y', 'n', 'yes', 'no'])) {
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         }
88 88
 
89 89
         if (null !== $this->helpText) {
90
-            $validator = function (?string $response) use ($validator) {
90
+            $validator = function(?string $response) use ($validator) {
91 91
                 $response = $response ?? '';
92 92
                 if (trim($response) === '?') {
93 93
                     $this->output->writeln($this->helpText ?: '');
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         }
99 99
 
100 100
         if ($this->compulsory) {
101
-            $validator = function (?string $response) use ($validator) {
101
+            $validator = function(?string $response) use ($validator) {
102 102
                 $response = $response ?? '';
103 103
                 if (trim($response) === '') {
104 104
                     throw new \InvalidArgumentException('This field is compulsory.');
Please login to merge, or discard this patch.