Completed
Push — master ( a1068d...c410a5 )
by David
10s
created
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
-        throw new self('Could not find an Aent that can handle events of type "'.$eventName.'"');
10
+        throw 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/EventCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,9 +58,9 @@
 block discarded – undo
58 58
      */
59 59
     private function getAllEventNames(): array
60 60
     {
61
-        return array_map(function (EventCommand $event) {
61
+        return array_map(function(EventCommand $event) {
62 62
             return $event->getEventName();
63
-        }, \array_filter($this->getApplication()->all(), function (Command $command) {
63
+        }, \array_filter($this->getApplication()->all(), function(Command $command) {
64 64
             return $command instanceof EventCommand && !$command->isHidden();
65 65
         }));
66 66
     }
Please login to merge, or discard this patch.
src/Helper/Question.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
         $validator = $this->validator;
113 113
 
114 114
         if ($this->yesNoQuestion) {
115
-            $validator = function (?string $response) use ($validator) {
115
+            $validator = function(?string $response) use ($validator) {
116 116
                 $response = $response ?? '';
117 117
                 $response = \strtolower(trim($response));
118 118
                 if (!\in_array($response, ['y', 'n', 'yes', 'no'])) {
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
         }
125 125
 
126 126
         if ($this->helpText !== null) {
127
-            $validator = function (?string $response) use ($validator) {
127
+            $validator = function(?string $response) use ($validator) {
128 128
                 $response = $response ?? '';
129 129
                 if (trim($response) === '?') {
130 130
                     $this->output->writeln($this->helpText ?: '');
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
         }
136 136
 
137 137
         if ($this->compulsory) {
138
-            $validator = function (?string $response) use ($validator) {
138
+            $validator = function(?string $response) use ($validator) {
139 139
                 $response = $response ?? '';
140 140
                 if (trim($response) === '') {
141 141
                     throw new \InvalidArgumentException('This field is compulsory.');
Please login to merge, or discard this patch.
src/AentHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
             ->setDefault($serviceName)
74 74
             ->compulsory()
75 75
             ->setHelpText('The "service name" is used as an identifier for the container you are creating. It is also bound in Docker internal network DNS and can be used from other containers to reference your container.')
76
-            ->setValidator(function (string $value) {
76
+            ->setValidator(function(string $value) {
77 77
                 $value = trim($value);
78 78
                 if (!\preg_match('/^[a-zA-Z0-9_.-]+$/', $value)) {
79 79
                     throw new \InvalidArgumentException('Invalid service name "' . $value . '". Service names can contain alphanumeric characters, and "_", ".", "-".');
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
             $default
112 112
         );
113 113
         $question->setAutocompleterValues($availableVersions);
114
-        $question->setValidator(function (string $value) use ($availableVersions, $dockerHubImage) {
114
+        $question->setValidator(function(string $value) use ($availableVersions, $dockerHubImage) {
115 115
             $value = trim($value);
116 116
 
117 117
             if ($value === 'v') {
Please login to merge, or discard this patch.
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/Hermes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
         }
42 42
         $replies = self::dispatch($event, \GuzzleHttp\json_encode($payload));
43 43
 
44
-        return \array_map(function (string $reply) {
44
+        return \array_map(function(string $reply) {
45 45
             return \GuzzleHttp\json_decode($reply, true);
46 46
         }, $replies);
47 47
     }
Please login to merge, or discard this patch.
src/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/Service/Service.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function __construct()
44 44
     {
45
-        $this->validatorSchema = json_decode((string)file_get_contents(__DIR__ . '/ServiceJsonSchema.json'), false);
45
+        $this->validatorSchema = json_decode((string) file_get_contents(__DIR__ . '/ServiceJsonSchema.json'), false);
46 46
     }
47 47
 
48 48
     /**
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      */
89 89
     public function jsonSerialize(): array
90 90
     {
91
-        $jsonSerializeMap = function (\JsonSerializable $obj): array {
91
+        $jsonSerializeMap = function(\JsonSerializable $obj): array {
92 92
             return $obj->jsonSerialize();
93 93
         };
94 94
 
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
         $dockerfileCommands[] = 'FROM ' . $this->image;
129 129
         foreach ($this->environment as $key => $env) {
130 130
             if ($env->getType() === EnvVariableTypeEnum::IMAGE_ENV_VARIABLE) {
131
-                $dockerfileCommands[] = "ENV $key" . '='. $env->getValue();
131
+                $dockerfileCommands[] = "ENV $key" . '=' . $env->getValue();
132 132
             }
133 133
         }
134 134
         foreach ($this->volumes as $volume) {
Please login to merge, or discard this patch.