Passed
Pull Request — master (#451)
by Kirill
09:09 queued 24s
created
src/Cookies/tests/TestResponseFactory.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         $response = new Response('php://memory', $code, []);
38 38
         $response = $response->withStatus($code, $reasonPhrase);
39 39
 
40
-        foreach ($this->config->getBaseHeaders() as $header => $value) {
40
+        foreach ($this->config->getBaseHeaders() as $header => $value){
41 41
             $response = $response->withAddedHeader($header, $value);
42 42
         }
43 43
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,8 @@
 block discarded – undo
37 37
         $response = new Response('php://memory', $code, []);
38 38
         $response = $response->withStatus($code, $reasonPhrase);
39 39
 
40
-        foreach ($this->config->getBaseHeaders() as $header => $value) {
40
+        foreach ($this->config->getBaseHeaders() as $header => $value)
41
+        {
41 42
             $response = $response->withAddedHeader($header, $value);
42 43
         }
43 44
 
Please login to merge, or discard this patch.
src/Cookies/src/Cookie.php 2 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
         bool $secure = false,
130 130
         bool $httpOnly = true,
131 131
         ?string $sameSite = null
132
-    ) {
132
+    ){
133 133
         $this->name = $name;
134 134
         $this->value = $value;
135 135
         $this->lifetime = $lifetime;
@@ -253,30 +253,30 @@  discard block
 block discarded – undo
253 253
      */
254 254
     public function createHeader(): string
255 255
     {
256
-        $header = [rawurlencode($this->name) . '=' . rawurlencode((string)$this->value)];
256
+        $header = [rawurlencode($this->name).'='.rawurlencode((string)$this->value)];
257 257
 
258
-        if ($this->lifetime !== null) {
259
-            $header[] = 'Expires=' . gmdate(\DateTime::COOKIE, $this->getExpires());
258
+        if ($this->lifetime !== null){
259
+            $header[] = 'Expires='.gmdate(\DateTime::COOKIE, $this->getExpires());
260 260
             $header[] = "Max-Age={$this->lifetime}";
261 261
         }
262 262
 
263
-        if (!empty($this->path)) {
263
+        if (!empty($this->path)){
264 264
             $header[] = "Path={$this->path}";
265 265
         }
266 266
 
267
-        if (!empty($this->domain)) {
267
+        if (!empty($this->domain)){
268 268
             $header[] = "Domain={$this->domain}";
269 269
         }
270 270
 
271
-        if ($this->secure) {
271
+        if ($this->secure){
272 272
             $header[] = 'Secure';
273 273
         }
274 274
 
275
-        if ($this->httpOnly) {
275
+        if ($this->httpOnly){
276 276
             $header[] = 'HttpOnly';
277 277
         }
278 278
 
279
-        if ($this->sameSite->get() !== null) {
279
+        if ($this->sameSite->get() !== null){
280 280
             $header[] = "SameSite={$this->sameSite->get()}";
281 281
         }
282 282
 
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
      */
293 293
     public function getExpires(): ?int
294 294
     {
295
-        if ($this->lifetime === null) {
295
+        if ($this->lifetime === null){
296 296
             return null;
297 297
         }
298 298
 
Please login to merge, or discard this patch.
Braces   +14 added lines, -7 removed lines patch added patch discarded remove patch
@@ -255,28 +255,34 @@  discard block
 block discarded – undo
255 255
     {
256 256
         $header = [rawurlencode($this->name) . '=' . rawurlencode((string)$this->value)];
257 257
 
258
-        if ($this->lifetime !== null) {
258
+        if ($this->lifetime !== null)
259
+        {
259 260
             $header[] = 'Expires=' . gmdate(\DateTime::COOKIE, $this->getExpires());
260 261
             $header[] = "Max-Age={$this->lifetime}";
261 262
         }
262 263
 
263
-        if (!empty($this->path)) {
264
+        if (!empty($this->path))
265
+        {
264 266
             $header[] = "Path={$this->path}";
265 267
         }
266 268
 
267
-        if (!empty($this->domain)) {
269
+        if (!empty($this->domain))
270
+        {
268 271
             $header[] = "Domain={$this->domain}";
269 272
         }
270 273
 
271
-        if ($this->secure) {
274
+        if ($this->secure)
275
+        {
272 276
             $header[] = 'Secure';
273 277
         }
274 278
 
275
-        if ($this->httpOnly) {
279
+        if ($this->httpOnly)
280
+        {
276 281
             $header[] = 'HttpOnly';
277 282
         }
278 283
 
279
-        if ($this->sameSite->get() !== null) {
284
+        if ($this->sameSite->get() !== null)
285
+        {
280 286
             $header[] = "SameSite={$this->sameSite->get()}";
281 287
         }
282 288
 
@@ -292,7 +298,8 @@  discard block
 block discarded – undo
292 298
      */
293 299
     public function getExpires(): ?int
294 300
     {
295
-        if ($this->lifetime === null) {
301
+        if ($this->lifetime === null)
302
+        {
296 303
             return null;
297 304
         }
298 305
 
Please login to merge, or discard this patch.
src/Cookies/src/CookieQueue.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -92,12 +92,12 @@  discard block
 block discarded – undo
92 92
         bool $httpOnly = true,
93 93
         ?string $sameSite = null
94 94
     ): self {
95
-        if (is_null($domain)) {
95
+        if (is_null($domain)){
96 96
             //Let's resolve domain via config
97 97
             $domain = $this->domain;
98 98
         }
99 99
 
100
-        if (is_null($secure)) {
100
+        if (is_null($secure)){
101 101
             $secure = $this->secure;
102 102
         }
103 103
 
@@ -127,8 +127,8 @@  discard block
 block discarded – undo
127 127
      */
128 128
     public function delete(string $name): void
129 129
     {
130
-        foreach ($this->scheduled as $index => $cookie) {
131
-            if ($cookie->getName() === $name) {
130
+        foreach ($this->scheduled as $index => $cookie){
131
+            if ($cookie->getName() === $name){
132 132
                 unset($this->scheduled[$index]);
133 133
             }
134 134
         }
Please login to merge, or discard this patch.
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -92,12 +92,14 @@  discard block
 block discarded – undo
92 92
         bool $httpOnly = true,
93 93
         ?string $sameSite = null
94 94
     ): self {
95
-        if (is_null($domain)) {
95
+        if (is_null($domain))
96
+        {
96 97
             //Let's resolve domain via config
97 98
             $domain = $this->domain;
98 99
         }
99 100
 
100
-        if (is_null($secure)) {
101
+        if (is_null($secure))
102
+        {
101 103
             $secure = $this->secure;
102 104
         }
103 105
 
@@ -127,8 +129,10 @@  discard block
 block discarded – undo
127 129
      */
128 130
     public function delete(string $name): void
129 131
     {
130
-        foreach ($this->scheduled as $index => $cookie) {
131
-            if ($cookie->getName() === $name) {
132
+        foreach ($this->scheduled as $index => $cookie)
133
+        {
134
+            if ($cookie->getName() === $name)
135
+            {
132 136
                 unset($this->scheduled[$index]);
133 137
             }
134 138
         }
Please login to merge, or discard this patch.
src/Cookies/src/Middleware/CookiesMiddleware.php 2 patches
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -73,8 +73,8 @@  discard block
 block discarded – undo
73 73
     {
74 74
         $cookies = $request->getCookieParams();
75 75
 
76
-        foreach ($cookies as $name => $cookie) {
77
-            if (!$this->isProtected($name)) {
76
+        foreach ($cookies as $name => $cookie){
77
+            if (!$this->isProtected($name)){
78 78
                 continue;
79 79
             }
80 80
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
      */
93 93
     protected function isProtected(string $cookie): bool
94 94
     {
95
-        if (in_array($cookie, $this->config->getExcludedCookies(), true)) {
95
+        if (in_array($cookie, $this->config->getExcludedCookies(), true)){
96 96
             //Excluded
97 97
             return false;
98 98
         }
@@ -111,14 +111,14 @@  discard block
 block discarded – undo
111 111
      */
112 112
     protected function packCookies(Response $response, CookieQueue $queue): Response
113 113
     {
114
-        if (empty($queue->getScheduled())) {
114
+        if (empty($queue->getScheduled())){
115 115
             return $response;
116 116
         }
117 117
 
118 118
         $cookies = $response->getHeader('Set-Cookie');
119 119
 
120
-        foreach ($queue->getScheduled() as $cookie) {
121
-            if (empty($cookie->getValue()) || !$this->isProtected($cookie->getName())) {
120
+        foreach ($queue->getScheduled() as $cookie){
121
+            if (empty($cookie->getValue()) || !$this->isProtected($cookie->getName())){
122 122
                 $cookies[] = $cookie->createHeader();
123 123
                 continue;
124 124
             }
@@ -135,26 +135,26 @@  discard block
 block discarded – undo
135 135
      */
136 136
     private function decodeCookie($cookie)
137 137
     {
138
-        try {
139
-            if (is_array($cookie)) {
138
+        try{
139
+            if (is_array($cookie)){
140 140
                 return array_map([$this, 'decodeCookie'], $cookie);
141 141
             }
142
-        } catch (DecryptException $exception) {
142
+        }catch (DecryptException $exception){
143 143
             return null;
144 144
         }
145 145
 
146
-        switch ($this->config->getProtectionMethod()) {
146
+        switch ($this->config->getProtectionMethod()){
147 147
             case CookiesConfig::COOKIE_ENCRYPT:
148
-                try {
148
+                try{
149 149
                     return $this->encryption->getEncrypter()->decrypt($cookie);
150
-                } catch (DecryptException $e) {
150
+                }catch (DecryptException $e){
151 151
                 }
152 152
                 return null;
153 153
             case CookiesConfig::COOKIE_HMAC:
154 154
                 $hmac = substr($cookie, -1 * CookiesConfig::MAC_LENGTH);
155 155
                 $value = substr($cookie, 0, strlen($cookie) - strlen($hmac));
156 156
 
157
-                if (hash_equals($this->hmacSign($value), $hmac)) {
157
+                if (hash_equals($this->hmacSign($value), $hmac)){
158 158
                     return $value;
159 159
                 }
160 160
         }
@@ -183,13 +183,13 @@  discard block
 block discarded – undo
183 183
      */
184 184
     private function encodeCookie(Cookie $cookie): Cookie
185 185
     {
186
-        if ($this->config->getProtectionMethod() === CookiesConfig::COOKIE_ENCRYPT) {
186
+        if ($this->config->getProtectionMethod() === CookiesConfig::COOKIE_ENCRYPT){
187 187
             $encryptor = $this->encryption->getEncrypter();
188 188
 
189 189
             return $cookie->withValue($encryptor->encrypt($cookie->getValue()));
190 190
         }
191 191
 
192 192
         //VALUE.HMAC
193
-        return $cookie->withValue($cookie->getValue() . $this->hmacSign($cookie->getValue()));
193
+        return $cookie->withValue($cookie->getValue().$this->hmacSign($cookie->getValue()));
194 194
     }
195 195
 }
Please login to merge, or discard this patch.
Braces   +30 added lines, -14 removed lines patch added patch discarded remove patch
@@ -73,8 +73,10 @@  discard block
 block discarded – undo
73 73
     {
74 74
         $cookies = $request->getCookieParams();
75 75
 
76
-        foreach ($cookies as $name => $cookie) {
77
-            if (!$this->isProtected($name)) {
76
+        foreach ($cookies as $name => $cookie)
77
+        {
78
+            if (!$this->isProtected($name))
79
+            {
78 80
                 continue;
79 81
             }
80 82
 
@@ -92,7 +94,8 @@  discard block
 block discarded – undo
92 94
      */
93 95
     protected function isProtected(string $cookie): bool
94 96
     {
95
-        if (in_array($cookie, $this->config->getExcludedCookies(), true)) {
97
+        if (in_array($cookie, $this->config->getExcludedCookies(), true))
98
+        {
96 99
             //Excluded
97 100
             return false;
98 101
         }
@@ -111,14 +114,17 @@  discard block
 block discarded – undo
111 114
      */
112 115
     protected function packCookies(Response $response, CookieQueue $queue): Response
113 116
     {
114
-        if (empty($queue->getScheduled())) {
117
+        if (empty($queue->getScheduled()))
118
+        {
115 119
             return $response;
116 120
         }
117 121
 
118 122
         $cookies = $response->getHeader('Set-Cookie');
119 123
 
120
-        foreach ($queue->getScheduled() as $cookie) {
121
-            if (empty($cookie->getValue()) || !$this->isProtected($cookie->getName())) {
124
+        foreach ($queue->getScheduled() as $cookie)
125
+        {
126
+            if (empty($cookie->getValue()) || !$this->isProtected($cookie->getName()))
127
+            {
122 128
                 $cookies[] = $cookie->createHeader();
123 129
                 continue;
124 130
             }
@@ -135,26 +141,35 @@  discard block
 block discarded – undo
135 141
      */
136 142
     private function decodeCookie($cookie)
137 143
     {
138
-        try {
139
-            if (is_array($cookie)) {
144
+        try
145
+        {
146
+            if (is_array($cookie))
147
+            {
140 148
                 return array_map([$this, 'decodeCookie'], $cookie);
141 149
             }
142
-        } catch (DecryptException $exception) {
150
+        }
151
+        catch (DecryptException $exception)
152
+        {
143 153
             return null;
144 154
         }
145 155
 
146
-        switch ($this->config->getProtectionMethod()) {
156
+        switch ($this->config->getProtectionMethod())
157
+        {
147 158
             case CookiesConfig::COOKIE_ENCRYPT:
148
-                try {
159
+                try
160
+                {
149 161
                     return $this->encryption->getEncrypter()->decrypt($cookie);
150
-                } catch (DecryptException $e) {
162
+                }
163
+                catch (DecryptException $e)
164
+                {
151 165
                 }
152 166
                 return null;
153 167
             case CookiesConfig::COOKIE_HMAC:
154 168
                 $hmac = substr($cookie, -1 * CookiesConfig::MAC_LENGTH);
155 169
                 $value = substr($cookie, 0, strlen($cookie) - strlen($hmac));
156 170
 
157
-                if (hash_equals($this->hmacSign($value), $hmac)) {
171
+                if (hash_equals($this->hmacSign($value), $hmac))
172
+                {
158 173
                     return $value;
159 174
                 }
160 175
         }
@@ -183,7 +198,8 @@  discard block
 block discarded – undo
183 198
      */
184 199
     private function encodeCookie(Cookie $cookie): Cookie
185 200
     {
186
-        if ($this->config->getProtectionMethod() === CookiesConfig::COOKIE_ENCRYPT) {
201
+        if ($this->config->getProtectionMethod() === CookiesConfig::COOKIE_ENCRYPT)
202
+        {
187 203
             $encryptor = $this->encryption->getEncrypter();
188 204
 
189 205
             return $cookie->withValue($encryptor->encrypt($cookie->getValue()));
Please login to merge, or discard this patch.
src/Cookies/src/Config/CookiesConfig.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,22 +53,22 @@
 block discarded – undo
53 53
     public function resolveDomain(UriInterface $uri): ?string
54 54
     {
55 55
         $host = $uri->getHost();
56
-        if (empty($host)) {
56
+        if (empty($host)){
57 57
             return null;
58 58
         }
59 59
 
60 60
         $pattern = $this->config['domain'];
61
-        if (preg_match("/^(\d{1,3}){4}:\d+$/", $host, $matches)) {
61
+        if (preg_match("/^(\d{1,3}){4}:\d+$/", $host, $matches)){
62 62
             // remove port
63 63
             $host = $matches[1];
64 64
         }
65 65
 
66
-        if ($host === 'localhost' || filter_var($host, FILTER_VALIDATE_IP)) {
66
+        if ($host === 'localhost' || filter_var($host, FILTER_VALIDATE_IP)){
67 67
             //We can't use sub-domains when website required by IP
68 68
             $pattern = ltrim($pattern, '.');
69 69
         }
70 70
 
71
-        if (strpos($pattern, '%s') === false) {
71
+        if (strpos($pattern, '%s') === false){
72 72
             //Forced domain
73 73
             return $pattern;
74 74
         }
Please login to merge, or discard this patch.
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,22 +53,26 @@
 block discarded – undo
53 53
     public function resolveDomain(UriInterface $uri): ?string
54 54
     {
55 55
         $host = $uri->getHost();
56
-        if (empty($host)) {
56
+        if (empty($host))
57
+        {
57 58
             return null;
58 59
         }
59 60
 
60 61
         $pattern = $this->config['domain'];
61
-        if (preg_match("/^(\d{1,3}){4}:\d+$/", $host, $matches)) {
62
+        if (preg_match("/^(\d{1,3}){4}:\d+$/", $host, $matches))
63
+        {
62 64
             // remove port
63 65
             $host = $matches[1];
64 66
         }
65 67
 
66
-        if ($host === 'localhost' || filter_var($host, FILTER_VALIDATE_IP)) {
68
+        if ($host === 'localhost' || filter_var($host, FILTER_VALIDATE_IP))
69
+        {
67 70
             //We can't use sub-domains when website required by IP
68 71
             $pattern = ltrim($pattern, '.');
69 72
         }
70 73
 
71
-        if (strpos($pattern, '%s') === false) {
74
+        if (strpos($pattern, '%s') === false)
75
+        {
72 76
             //Forced domain
73 77
             return $pattern;
74 78
         }
Please login to merge, or discard this patch.
src/Cookies/src/Cookie/SameSite.php 3 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,12 +33,12 @@
 block discarded – undo
33 33
      */
34 34
     private function defineValue(?string $sameSite, bool $secure): ?string
35 35
     {
36
-        if ($sameSite === null) {
36
+        if ($sameSite === null){
37 37
             return null;
38 38
         }
39 39
 
40 40
         $sameSite = ucfirst(strtolower($sameSite));
41
-        if (!in_array($sameSite, self::VALUES, true)) {
41
+        if (!in_array($sameSite, self::VALUES, true)){
42 42
             return null;
43 43
         }
44 44
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,12 +33,14 @@
 block discarded – undo
33 33
      */
34 34
     private function defineValue(?string $sameSite, bool $secure): ?string
35 35
     {
36
-        if ($sameSite === null) {
36
+        if ($sameSite === null)
37
+        {
37 38
             return null;
38 39
         }
39 40
 
40 41
         $sameSite = ucfirst(strtolower($sameSite));
41
-        if (!in_array($sameSite, self::VALUES, true)) {
42
+        if (!in_array($sameSite, self::VALUES, true))
43
+        {
42 44
             return null;
43 45
         }
44 46
 
Please login to merge, or discard this patch.
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     public const NONE   = 'None';
12 12
 
13 13
     private const VALUES  = [self::STRICT, self::LAX, self::NONE];
14
-    private const DEFAULT = self::LAX;
14
+    private const default = self::LAX;
15 15
 
16 16
     /** @var string|null */
17 17
     private $sameSite;
@@ -42,6 +42,6 @@  discard block
 block discarded – undo
42 42
             return null;
43 43
         }
44 44
 
45
-        return ($sameSite === self::NONE && !$secure) ? self::DEFAULT : $sameSite;
45
+        return ($sameSite === self::NONE && !$secure) ? self::default : $sameSite;
46 46
     }
47 47
 }
Please login to merge, or discard this patch.
src/Framework/GRPC/ProtoCompiler.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -63,14 +63,14 @@  discard block
 block discarded – undo
63 63
 
64 64
         $output = trim(implode("\n", $output), "\n ,");
65 65
 
66
-        if ($output !== '') {
66
+        if ($output !== ''){
67 67
             $this->files->deleteDirectory($tmpDir);
68 68
             throw new CompileException($output);
69 69
         }
70 70
 
71 71
         // copying files (using relative path and namespace)
72 72
         $result = [];
73
-        foreach ($this->files->getFiles($tmpDir) as $file) {
73
+        foreach ($this->files->getFiles($tmpDir) as $file){
74 74
             $result[] = $this->copy($tmpDir, $file);
75 75
         }
76 76
 
@@ -87,11 +87,11 @@  discard block
 block discarded – undo
87 87
     private function copy(string $tmpDir, string $file): string
88 88
     {
89 89
         $source = ltrim($this->files->relativePath($file, $tmpDir), '\\/');
90
-        if (strpos($source, $this->baseNamespace) === 0) {
90
+        if (strpos($source, $this->baseNamespace) === 0){
91 91
             $source = ltrim(substr($source, strlen($this->baseNamespace)), '\\/');
92 92
         }
93 93
 
94
-        $target = $this->files->normalizePath($this->basePath . '/' . $source);
94
+        $target = $this->files->normalizePath($this->basePath.'/'.$source);
95 95
 
96 96
         $this->files->ensureDirectory(dirname($target));
97 97
         $this->files->copy($file, $target);
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
      */
105 105
     private function tmpDir(): string
106 106
     {
107
-        $directory = sys_get_temp_dir() . '/' . spl_object_hash($this);
107
+        $directory = sys_get_temp_dir().'/'.spl_object_hash($this);
108 108
         $this->files->ensureDirectory($directory);
109 109
 
110 110
         return $this->files->normalizePath($directory, true);
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     {
121 121
         return array_filter(
122 122
             $this->files->getFiles(dirname($protoFile)),
123
-            function ($file) {
123
+            function ($file){
124 124
                 return strpos($file, '.proto') !== false;
125 125
             }
126 126
         );
Please login to merge, or discard this patch.
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -63,14 +63,16 @@  discard block
 block discarded – undo
63 63
 
64 64
         $output = trim(implode("\n", $output), "\n ,");
65 65
 
66
-        if ($output !== '') {
66
+        if ($output !== '')
67
+        {
67 68
             $this->files->deleteDirectory($tmpDir);
68 69
             throw new CompileException($output);
69 70
         }
70 71
 
71 72
         // copying files (using relative path and namespace)
72 73
         $result = [];
73
-        foreach ($this->files->getFiles($tmpDir) as $file) {
74
+        foreach ($this->files->getFiles($tmpDir) as $file)
75
+        {
74 76
             $result[] = $this->copy($tmpDir, $file);
75 77
         }
76 78
 
@@ -87,7 +89,8 @@  discard block
 block discarded – undo
87 89
     private function copy(string $tmpDir, string $file): string
88 90
     {
89 91
         $source = ltrim($this->files->relativePath($file, $tmpDir), '\\/');
90
-        if (strpos($source, $this->baseNamespace) === 0) {
92
+        if (strpos($source, $this->baseNamespace) === 0)
93
+        {
91 94
             $source = ltrim(substr($source, strlen($this->baseNamespace)), '\\/');
92 95
         }
93 96
 
@@ -120,7 +123,8 @@  discard block
 block discarded – undo
120 123
     {
121 124
         return array_filter(
122 125
             $this->files->getFiles(dirname($protoFile)),
123
-            function ($file) {
126
+            function ($file)
127
+            {
124 128
                 return strpos($file, '.proto') !== false;
125 129
             }
126 130
         );
Please login to merge, or discard this patch.
src/Framework/Command/Translator/ExportCommand.php 2 patches
Braces   +12 added lines, -6 removed lines patch added patch discarded remove patch
@@ -39,7 +39,8 @@  discard block
 block discarded – undo
39 39
      */
40 40
     public function perform(TranslatorConfig $config, CatalogueManager $manager): void
41 41
     {
42
-        if (!$config->hasDumper($this->option('dumper'))) {
42
+        if (!$config->hasDumper($this->option('dumper')))
43
+        {
43 44
             $this->writeln("<fg=red>Undefined dumper '{$this->option('dumper')}'.</fg=red>");
44 45
 
45 46
             return;
@@ -51,7 +52,8 @@  discard block
 block discarded – undo
51 52
             $manager->get($this->argument('locale'))
52 53
         );
53 54
 
54
-        if ($this->isVerbose() && !empty($mc->getDomains())) {
55
+        if ($this->isVerbose() && !empty($mc->getDomains()))
56
+        {
55 57
             $this->sprintf(
56 58
                 "<info>Exporting domain(s):</info> %s\n",
57 59
                 implode(',', $mc->getDomains())
@@ -89,10 +91,14 @@  discard block
 block discarded – undo
89 91
             $catalogue->getData()
90 92
         );
91 93
 
92
-        if ($this->option('fallback')) {
93
-            foreach ($manager->get($config->getFallbackLocale())->getData() as $domain => $messages) {
94
-                foreach ($messages as $id => $message) {
95
-                    if (!$messageCatalogue->defines($id, $domain)) {
94
+        if ($this->option('fallback'))
95
+        {
96
+            foreach ($manager->get($config->getFallbackLocale())->getData() as $domain => $messages)
97
+            {
98
+                foreach ($messages as $id => $message)
99
+                {
100
+                    if (!$messageCatalogue->defines($id, $domain))
101
+                    {
96 102
                         $messageCatalogue->set($id, $message, $domain);
97 103
                     }
98 104
                 }
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
         ['locale', InputArgument::REQUIRED, 'Locale to be dumped'],
29 29
         ['path', InputArgument::REQUIRED, 'Export path'],
30 30
     ];
31
-    protected const OPTIONS     = [
31
+    protected const OPTIONS = [
32 32
         ['dumper', 'd', InputOption::VALUE_OPTIONAL, 'Dumper name', 'php'],
33 33
         ['fallback', 'f', InputOption::VALUE_NONE, 'Merge messages from fallback catalogue'],
34 34
     ];
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      */
40 40
     public function perform(TranslatorConfig $config, CatalogueManager $manager): void
41 41
     {
42
-        if (!$config->hasDumper($this->option('dumper'))) {
42
+        if (!$config->hasDumper($this->option('dumper'))){
43 43
             $this->writeln("<fg=red>Undefined dumper '{$this->option('dumper')}'.</fg=red>");
44 44
 
45 45
             return;
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
             $manager->get($this->argument('locale'))
52 52
         );
53 53
 
54
-        if ($this->isVerbose() && !empty($mc->getDomains())) {
54
+        if ($this->isVerbose() && !empty($mc->getDomains())){
55 55
             $this->sprintf(
56 56
                 "<info>Exporting domain(s):</info> %s\n",
57 57
                 implode(',', $mc->getDomains())
@@ -69,8 +69,8 @@  discard block
 block discarded – undo
69 69
             ]
70 70
         );
71 71
 
72
-        $this->writeln('Export successfully completed using <info>' . get_class($dumper) . '</info>');
73
-        $this->writeln('Output: <comment>' . realpath($this->argument('path')) . '</comment>');
72
+        $this->writeln('Export successfully completed using <info>'.get_class($dumper).'</info>');
73
+        $this->writeln('Output: <comment>'.realpath($this->argument('path')).'</comment>');
74 74
     }
75 75
 
76 76
     /**
@@ -89,10 +89,10 @@  discard block
 block discarded – undo
89 89
             $catalogue->getData()
90 90
         );
91 91
 
92
-        if ($this->option('fallback')) {
93
-            foreach ($manager->get($config->getFallbackLocale())->getData() as $domain => $messages) {
94
-                foreach ($messages as $id => $message) {
95
-                    if (!$messageCatalogue->defines($id, $domain)) {
92
+        if ($this->option('fallback')){
93
+            foreach ($manager->get($config->getFallbackLocale())->getData() as $domain => $messages){
94
+                foreach ($messages as $id => $message){
95
+                    if (!$messageCatalogue->defines($id, $domain)){
96 96
                         $messageCatalogue->set($id, $message, $domain);
97 97
                     }
98 98
                 }
Please login to merge, or discard this patch.
src/Csrf/tests/TestResponseFactory.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         $response = new Response('php://memory', $code, []);
38 38
         $response = $response->withStatus($code, $reasonPhrase);
39 39
 
40
-        foreach ($this->config->getBaseHeaders() as $header => $value) {
40
+        foreach ($this->config->getBaseHeaders() as $header => $value){
41 41
             $response = $response->withAddedHeader($header, $value);
42 42
         }
43 43
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,8 @@
 block discarded – undo
37 37
         $response = new Response('php://memory', $code, []);
38 38
         $response = $response->withStatus($code, $reasonPhrase);
39 39
 
40
-        foreach ($this->config->getBaseHeaders() as $header => $value) {
40
+        foreach ($this->config->getBaseHeaders() as $header => $value)
41
+        {
41 42
             $response = $response->withAddedHeader($header, $value);
42 43
         }
43 44
 
Please login to merge, or discard this patch.