Passed
Branch master (6220de)
by BruceScrutinizer
04:32
created
php-cs-fixer/vendor/composer/semver/src/Constraint/MultiConstraint.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
     {
48 48
         if (\count($constraints) < 2) {
49 49
             throw new \InvalidArgumentException(
50
-                'Must provide at least two constraints for a MultiConstraint. Use '.
51
-                'the regular Constraint class for one constraint only or MatchAllConstraint for none. You may use '.
50
+                'Must provide at least two constraints for a MultiConstraint. Use ' .
51
+                'the regular Constraint class for one constraint only or MatchAllConstraint for none. You may use ' .
52 52
                 'MultiConstraint::create() which optimizes and handles those cases automatically.'
53 53
             );
54 54
         }
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
                     return 'false';
99 99
                 }
100 100
             } else {
101
-                $parts[] = '('.$code.')';
101
+                $parts[] = '(' . $code . ')';
102 102
             }
103 103
         }
104 104
 
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
             return $this->prettyString;
160 160
         }
161 161
 
162
-        return (string) $this;
162
+        return (string)$this;
163 163
     }
164 164
 
165 165
     /**
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
 
174 174
         $constraints = array();
175 175
         foreach ($this->constraints as $constraint) {
176
-            $constraints[] = (string) $constraint;
176
+            $constraints[] = (string)$constraint;
177 177
         }
178 178
 
179 179
         return $this->string = '[' . implode($this->conjunctive ? ' ' : ' || ', $constraints) . ']';
@@ -264,13 +264,13 @@  discard block
 block discarded – undo
264 264
                     && $right->conjunctive
265 265
                     && \count($left->constraints) === 2
266 266
                     && \count($right->constraints) === 2
267
-                    && ($left0 = (string) $left->constraints[0])
267
+                    && ($left0 = (string)$left->constraints[0])
268 268
                     && $left0[0] === '>' && $left0[1] === '='
269
-                    && ($left1 = (string) $left->constraints[1])
269
+                    && ($left1 = (string)$left->constraints[1])
270 270
                     && $left1[0] === '<'
271
-                    && ($right0 = (string) $right->constraints[0])
271
+                    && ($right0 = (string)$right->constraints[0])
272 272
                     && $right0[0] === '>' && $right0[1] === '='
273
-                    && ($right1 = (string) $right->constraints[1])
273
+                    && ($right1 = (string)$right->constraints[1])
274 274
                     && $right1[0] === '<'
275 275
                     && substr($left1, 2) === substr($right0, 3)
276 276
                 ) {
Please login to merge, or discard this patch.
php-cs-fixer/vendor/composer/semver/src/Constraint/MatchNoneConstraint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
             return $this->prettyString;
55 55
         }
56 56
 
57
-        return (string) $this;
57
+        return (string)$this;
58 58
     }
59 59
 
60 60
     /**
Please login to merge, or discard this patch.
tools/php-cs-fixer/vendor/composer/semver/src/Constraint/Bound.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      */
63 63
     public function isPositiveInfinity()
64 64
     {
65
-        return $this->getVersion() === PHP_INT_MAX.'.0.0.0' && !$this->isInclusive();
65
+        return $this->getVersion() === PHP_INT_MAX . '.0.0.0' && !$this->isInclusive();
66 66
     }
67 67
 
68 68
     /**
@@ -117,6 +117,6 @@  discard block
 block discarded – undo
117 117
      */
118 118
     public static function positiveInfinity()
119 119
     {
120
-        return new Bound(PHP_INT_MAX.'.0.0.0', false);
120
+        return new Bound(PHP_INT_MAX . '.0.0.0', false);
121 121
     }
122 122
 }
Please login to merge, or discard this patch.
tools/php-cs-fixer/vendor/composer/semver/src/Intervals.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -82,11 +82,11 @@  discard block
 block discarded – undo
82 82
                 return false;
83 83
             }
84 84
 
85
-            if ((string) $candidateIntervals['numeric'][$index]->getStart() !== (string) $interval->getStart()) {
85
+            if ((string)$candidateIntervals['numeric'][$index]->getStart() !== (string)$interval->getStart()) {
86 86
                 return false;
87 87
             }
88 88
 
89
-            if ((string) $candidateIntervals['numeric'][$index]->getEnd() !== (string) $interval->getEnd()) {
89
+            if ((string)$candidateIntervals['numeric'][$index]->getEnd() !== (string)$interval->getEnd()) {
90 90
                 return false;
91 91
             }
92 92
         }
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
         $constraints = array();
147 147
         $hasNumericMatchAll = false;
148 148
 
149
-        if (\count($intervals['numeric']) === 1 && (string) $intervals['numeric'][0]->getStart() === (string) Interval::fromZero() && (string) $intervals['numeric'][0]->getEnd() === (string) Interval::untilPositiveInfinity()) {
149
+        if (\count($intervals['numeric']) === 1 && (string)$intervals['numeric'][0]->getStart() === (string)Interval::fromZero() && (string)$intervals['numeric'][0]->getEnd() === (string)Interval::untilPositiveInfinity()) {
150 150
             $constraints[] = $intervals['numeric'][0]->getStart();
151 151
             $hasNumericMatchAll = true;
152 152
         } else {
@@ -158,13 +158,13 @@  discard block
 block discarded – undo
158 158
                 // but this needs to happen as a conjunctive expression together with the start of the current interval
159 159
                 // and end of next interval, so [>=M, <N] || [>N, <P] => [>=M, !=N, <P] but M/P can be skipped if
160 160
                 // they are zero/+inf
161
-                if ($interval->getEnd()->getOperator() === '<' && $i+1 < $count) {
162
-                    $nextInterval = $intervals['numeric'][$i+1];
161
+                if ($interval->getEnd()->getOperator() === '<' && $i + 1 < $count) {
162
+                    $nextInterval = $intervals['numeric'][$i + 1];
163 163
                     if ($interval->getEnd()->getVersion() === $nextInterval->getStart()->getVersion() && $nextInterval->getStart()->getOperator() === '>') {
164 164
                         // only add a start if we didn't already do so, can be skipped if we're looking at second
165 165
                         // interval in [>=M, <N] || [>N, <P] || [>P, <Q] where unEqualConstraints currently contains
166 166
                         // [>=M, !=N] already and we only want to add !=P right now
167
-                        if (\count($unEqualConstraints) === 0 && (string) $interval->getStart() !== (string) Interval::fromZero()) {
167
+                        if (\count($unEqualConstraints) === 0 && (string)$interval->getStart() !== (string)Interval::fromZero()) {
168 168
                             $unEqualConstraints[] = $interval->getStart();
169 169
                         }
170 170
                         $unEqualConstraints[] = new Constraint('!=', $interval->getEnd()->getVersion());
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
 
175 175
                 if (\count($unEqualConstraints) > 0) {
176 176
                     // this is where the end of the following interval of a != constraint is added as explained above
177
-                    if ((string) $interval->getEnd() !== (string) Interval::untilPositiveInfinity()) {
177
+                    if ((string)$interval->getEnd() !== (string)Interval::untilPositiveInfinity()) {
178 178
                         $unEqualConstraints[] = $interval->getEnd();
179 179
                     }
180 180
 
@@ -195,9 +195,9 @@  discard block
 block discarded – undo
195 195
                     continue;
196 196
                 }
197 197
 
198
-                if ((string) $interval->getStart() === (string) Interval::fromZero()) {
198
+                if ((string)$interval->getStart() === (string)Interval::fromZero()) {
199 199
                     $constraints[] = $interval->getEnd();
200
-                } elseif ((string) $interval->getEnd() === (string) Interval::untilPositiveInfinity()) {
200
+                } elseif ((string)$interval->getEnd() === (string)Interval::untilPositiveInfinity()) {
201 201
                     $constraints[] = $interval->getStart();
202 202
                 } else {
203 203
                     $constraints[] = new MultiConstraint(array($interval->getStart(), $interval->getEnd()), true);
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
      */
272 272
     public static function get(ConstraintInterface $constraint)
273 273
     {
274
-        $key = (string) $constraint;
274
+        $key = (string)$constraint;
275 275
 
276 276
         if (!isset(self::$intervalsCache[$key])) {
277 277
             self::$intervalsCache[$key] = self::generateIntervals($constraint);
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
         }
301 301
 
302 302
         if (!$constraint instanceof MultiConstraint) {
303
-            throw new \UnexpectedValueException('The constraint passed in should be an MatchAllConstraint, Constraint or MultiConstraint instance, got '.\get_class($constraint).'.');
303
+            throw new \UnexpectedValueException('The constraint passed in should be an MatchAllConstraint, Constraint or MultiConstraint instance, got ' . \get_class($constraint) . '.');
304 304
         }
305 305
 
306 306
         $constraints = $constraint->getConstraints();
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
         }
383 383
 
384 384
         $opSortOrder = self::$opSortOrder;
385
-        usort($borders, function ($a, $b) use ($opSortOrder) {
385
+        usort($borders, function($a, $b) use ($opSortOrder) {
386 386
             $order = version_compare($a['version'], $b['version']);
387 387
             if ($order === 0) {
388 388
                 return $opSortOrder[$a['operator']] - $opSortOrder[$b['operator']];
Please login to merge, or discard this patch.
tools/php-cs-fixer/vendor/composer/semver/src/VersionParser.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      */
51 51
     public static function parseStability($version)
52 52
     {
53
-        $version = (string) preg_replace('{#.+$}', '', $version);
53
+        $version = (string)preg_replace('{#.+$}', '', $version);
54 54
 
55 55
         if (strpos($version, 'dev-') === 0 || '-dev' === substr($version, -4)) {
56 56
             return 'dev';
@@ -176,9 +176,9 @@  discard block
 block discarded – undo
176 176
         }
177 177
 
178 178
         $extraMessage = '';
179
-        if (preg_match('{ +as +' . preg_quote($version) . '(?:@(?:'.self::$stabilitiesRegex.'))?$}', $fullVersion)) {
179
+        if (preg_match('{ +as +' . preg_quote($version) . '(?:@(?:' . self::$stabilitiesRegex . '))?$}', $fullVersion)) {
180 180
             $extraMessage = ' in "' . $fullVersion . '", the alias must be an exact version';
181
-        } elseif (preg_match('{^' . preg_quote($version) . '(?:@(?:'.self::$stabilitiesRegex.'))? +as +}', $fullVersion)) {
181
+        } elseif (preg_match('{^' . preg_quote($version) . '(?:@(?:' . self::$stabilitiesRegex . '))? +as +}', $fullVersion)) {
182 182
             $extraMessage = ' in "' . $fullVersion . '", the alias source must be an exact version, if it is a branch name you should prefix it with dev-';
183 183
         }
184 184
 
@@ -253,14 +253,14 @@  discard block
 block discarded – undo
253 253
 
254 254
         $orConstraints = preg_split('{\s*\|\|?\s*}', trim($constraints));
255 255
         if (false === $orConstraints) {
256
-            throw new \RuntimeException('Failed to preg_split string: '.$constraints);
256
+            throw new \RuntimeException('Failed to preg_split string: ' . $constraints);
257 257
         }
258 258
         $orGroups = array();
259 259
 
260 260
         foreach ($orConstraints as $constraints) {
261 261
             $andConstraints = preg_split('{(?<!^|as|[=>< ,]) *(?<!-)[, ](?!-) *(?!,|as|$)}', $constraints);
262 262
             if (false === $andConstraints) {
263
-                throw new \RuntimeException('Failed to preg_split string: '.$constraints);
263
+                throw new \RuntimeException('Failed to preg_split string: ' . $constraints);
264 264
             }
265 265
             if (\count($andConstraints) > 1) {
266 266
                 $constraintObjects = array();
@@ -455,7 +455,7 @@  discard block
 block discarded – undo
455 455
             $lowVersion = $this->normalize($matches['from']);
456 456
             $lowerBound = new Constraint('>=', $lowVersion . $lowStabilitySuffix);
457 457
 
458
-            $empty = function ($x) {
458
+            $empty = function($x) {
459 459
                 return ($x === 0 || $x === '0') ? false : empty($x);
460 460
             };
461 461
 
@@ -487,7 +487,7 @@  discard block
 block discarded – undo
487 487
                     // recover from an invalid constraint like foobar-dev which should be dev-foobar
488 488
                     // except if the constraint uses a known operator, in which case it must be a parse error
489 489
                     if (substr($matches[2], -4) === '-dev' && preg_match('{^[0-9a-zA-Z-./]+$}', $matches[2])) {
490
-                        $version = $this->normalize('dev-'.substr($matches[2], 0, -4));
490
+                        $version = $this->normalize('dev-' . substr($matches[2], 0, -4));
491 491
                     } else {
492 492
                         throw $e;
493 493
                     }
Please login to merge, or discard this patch.
tools/php-cs-fixer/vendor/composer/xdebug-handler/src/XdebugHandler.php 1 patch
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -60,14 +60,14 @@  discard block
 block discarded – undo
60 60
         }
61 61
 
62 62
         self::$name = strtoupper($envPrefix);
63
-        $this->envAllowXdebug = self::$name.self::SUFFIX_ALLOW;
64
-        $this->envOriginalInis = self::$name.self::SUFFIX_INIS;
63
+        $this->envAllowXdebug = self::$name . self::SUFFIX_ALLOW;
64
+        $this->envOriginalInis = self::$name . self::SUFFIX_INIS;
65 65
 
66 66
         if (extension_loaded('xdebug')) {
67 67
             $this->loaded = phpversion('xdebug') ?: 'unknown';
68 68
 
69 69
             if (false !== ($mode = ini_get('xdebug.mode'))) {
70
-                $this->mode = getenv('XDEBUG_MODE') ?: ($mode  ?: 'off');
70
+                $this->mode = getenv('XDEBUG_MODE') ?: ($mode ?: 'off');
71 71
                 if (preg_match('/^,+$/', str_replace(' ', '', $this->mode))) {
72 72
                     $this->mode = 'off';
73 73
                 }
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
             $this->debug = getenv(self::DEBUG);
81 81
         }
82 82
 
83
-        $this->statusWriter = new Status($this->envAllowXdebug, (bool) $this->debug);
83
+        $this->statusWriter = new Status($this->envAllowXdebug, (bool)$this->debug);
84 84
     }
85 85
 
86 86
     /**
@@ -129,8 +129,8 @@  discard block
 block discarded – undo
129 129
      */
130 130
     public function check()
131 131
     {
132
-        $this->notify(Status::CHECK, $this->loaded.'|'.$this->mode);
133
-        $envArgs = explode('|', (string) getenv($this->envAllowXdebug));
132
+        $this->notify(Status::CHECK, $this->loaded . '|' . $this->mode);
133
+        $envArgs = explode('|', (string)getenv($this->envAllowXdebug));
134 134
 
135 135
         if (empty($envArgs[0]) && $this->requiresRestart(self::$xdebugActive)) {
136 136
             // Restart required
@@ -181,14 +181,14 @@  discard block
 block discarded – undo
181 181
     public static function getAllIniFiles()
182 182
     {
183 183
         if (!empty(self::$name)) {
184
-            $env = getenv(self::$name.self::SUFFIX_INIS);
184
+            $env = getenv(self::$name . self::SUFFIX_INIS);
185 185
 
186 186
             if (false !== $env) {
187 187
                 return explode(PATH_SEPARATOR, $env);
188 188
             }
189 189
         }
190 190
 
191
-        $paths = array((string) php_ini_loaded_file());
191
+        $paths = array((string)php_ini_loaded_file());
192 192
 
193 193
         if ($scanned = php_ini_scanned_files()) {
194 194
             $paths = array_merge($paths, array_map('trim', explode(',', $scanned)));
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
      */
208 208
     public static function getRestartSettings()
209 209
     {
210
-        $envArgs = explode('|', (string) getenv(self::RESTART_SETTINGS));
210
+        $envArgs = explode('|', (string)getenv(self::RESTART_SETTINGS));
211 211
 
212 212
         if (count($envArgs) !== 6
213 213
             || (!self::$inRestart && php_ini_loaded_file() !== $envArgs[0])) {
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
 
217 217
         return array(
218 218
             'tmpIni' => $envArgs[0],
219
-            'scannedInis' => (bool) $envArgs[1],
219
+            'scannedInis' => (bool)$envArgs[1],
220 220
             'scanDir' => '*' === $envArgs[2] ? false : $envArgs[2],
221 221
             'phprc' => '*' === $envArgs[3] ? false : $envArgs[3],
222 222
             'inis' => explode(PATH_SEPARATOR, $envArgs[4]),
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
      */
232 232
     public static function getSkippedVersion()
233 233
     {
234
-        return (string) self::$skipped;
234
+        return (string)self::$skipped;
235 235
     }
236 236
 
237 237
     /**
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
             $cmd = Process::escapeShellCommand($command);
291 291
             if (defined('PHP_WINDOWS_VERSION_BUILD')) {
292 292
                 // Outer quotes required on cmd string below PHP 8
293
-                $cmd = '"'.$cmd.'"';
293
+                $cmd = '"' . $cmd . '"';
294 294
             }
295 295
         }
296 296
 
@@ -304,11 +304,11 @@  discard block
 block discarded – undo
304 304
             $this->notify(Status::ERROR, 'Unable to restart process');
305 305
             $exitCode = -1;
306 306
         } else {
307
-            $this->notify(Status::INFO, 'Restarted process exited '.$exitCode);
307
+            $this->notify(Status::INFO, 'Restarted process exited ' . $exitCode);
308 308
         }
309 309
 
310 310
         if ($this->debug === '2') {
311
-            $this->notify(Status::INFO, 'Temp ini saved: '.$this->tmpIni);
311
+            $this->notify(Status::INFO, 'Temp ini saved: ' . $this->tmpIni);
312 312
         } else {
313 313
             @unlink($this->tmpIni);
314 314
         }
@@ -334,17 +334,17 @@  discard block
 block discarded – undo
334 334
         $tmpDir = sys_get_temp_dir();
335 335
 
336 336
         if (!$this->cli) {
337
-            $error = 'Unsupported SAPI: '.PHP_SAPI;
337
+            $error = 'Unsupported SAPI: ' . PHP_SAPI;
338 338
         } elseif (!defined('PHP_BINARY')) {
339
-            $error = 'PHP version is too old: '.PHP_VERSION;
339
+            $error = 'PHP version is too old: ' . PHP_VERSION;
340 340
         } elseif (!$this->checkConfiguration($info)) {
341 341
             $error = $info;
342 342
         } elseif (!$this->checkScanDirConfig()) {
343
-            $error = 'PHP version does not report scanned inis: '.PHP_VERSION;
343
+            $error = 'PHP version does not report scanned inis: ' . PHP_VERSION;
344 344
         } elseif (!$this->checkMainScript()) {
345
-            $error = 'Unable to access main script: '.$this->script;
345
+            $error = 'Unable to access main script: ' . $this->script;
346 346
         } elseif (!$this->writeTmpIni($iniFiles, $tmpDir, $error)) {
347
-            $error = $error ?: 'Unable to create temp ini file at: '.$tmpDir;
347
+            $error = $error ?: 'Unable to create temp ini file at: ' . $tmpDir;
348 348
         } elseif (!$this->setEnvironment($scannedInis, $iniFiles)) {
349 349
             $error = 'Unable to set environment variables';
350 350
         }
@@ -382,10 +382,10 @@  discard block
 block discarded – undo
382 382
         foreach ($iniFiles as $file) {
383 383
             // Check for inaccessible ini files
384 384
             if (($data = @file_get_contents($file)) === false) {
385
-                $error = 'Unable to read ini: '.$file;
385
+                $error = 'Unable to read ini: ' . $file;
386 386
                 return false;
387 387
             }
388
-            $content .= preg_replace($regex, ';$1', $data).PHP_EOL;
388
+            $content .= preg_replace($regex, ';$1', $data) . PHP_EOL;
389 389
         }
390 390
 
391 391
         // Merge loaded settings into our ini content, if it is valid
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
         }
396 396
 
397 397
         // Work-around for https://bugs.php.net/bug.php?id=75932
398
-        $content .= 'opcache.enable_cli=0'.PHP_EOL;
398
+        $content .= 'opcache.enable_cli=0' . PHP_EOL;
399 399
 
400 400
         return @file_put_contents($this->tmpIni, $content);
401 401
     }
@@ -434,13 +434,13 @@  discard block
 block discarded – undo
434 434
         $phprc = getenv('PHPRC');
435 435
 
436 436
         // Make original inis available to restarted process
437
-        if (!putenv($this->envOriginalInis.'='.implode(PATH_SEPARATOR, $iniFiles))) {
437
+        if (!putenv($this->envOriginalInis . '=' . implode(PATH_SEPARATOR, $iniFiles))) {
438 438
             return false;
439 439
         }
440 440
 
441 441
         if ($this->persistent) {
442 442
             // Use the environment to persist the settings
443
-            if (!putenv('PHP_INI_SCAN_DIR=') || !putenv('PHPRC='.$this->tmpIni)) {
443
+            if (!putenv('PHP_INI_SCAN_DIR=') || !putenv('PHPRC=' . $this->tmpIni)) {
444 444
                 return false;
445 445
             }
446 446
         }
@@ -449,12 +449,12 @@  discard block
 block discarded – undo
449 449
         $envArgs = array(
450 450
             self::RESTART_ID,
451 451
             $this->loaded,
452
-            (int) $scannedInis,
452
+            (int)$scannedInis,
453 453
             false === $scanDir ? '*' : $scanDir,
454 454
             false === $phprc ? '*' : $phprc,
455 455
         );
456 456
 
457
-        return putenv($this->envAllowXdebug.'='.implode('|', $envArgs));
457
+        return putenv($this->envAllowXdebug . '=' . implode('|', $envArgs));
458 458
     }
459 459
 
460 460
     /**
@@ -490,7 +490,7 @@  discard block
 block discarded – undo
490 490
 
491 491
             if (!isset($iniConfig[$name]) || $iniConfig[$name] !== $value) {
492 492
                 // Double-quote escape each value
493
-                $content .= $name.'="'.addcslashes($value, '\\"').'"'.PHP_EOL;
493
+                $content .= $name . '="' . addcslashes($value, '\\"') . '"' . PHP_EOL;
494 494
             }
495 495
         }
496 496
 
@@ -602,7 +602,7 @@  discard block
 block discarded – undo
602 602
         $workingDir = getcwd();
603 603
         if (0 === strpos($workingDir, '\\\\')) {
604 604
             if (defined('PHP_WINDOWS_VERSION_BUILD') && PHP_VERSION_ID < 70400) {
605
-                $info = 'cmd.exe does not support UNC paths: '.$workingDir;
605
+                $info = 'cmd.exe does not support UNC paths: ' . $workingDir;
606 606
                 return false;
607 607
             }
608 608
         }
@@ -634,7 +634,7 @@  discard block
 block discarded – undo
634 634
             // Restarting, so set a handler to ignore CTRL events in the parent.
635 635
             // This ensures that CTRL+C events will be available in the child
636 636
             // process without having to enable them there, which is unreliable.
637
-            sapi_windows_set_ctrl_handler(function ($evt) {});
637
+            sapi_windows_set_ctrl_handler(function($evt) {});
638 638
         }
639 639
     }
640 640
 }
Please login to merge, or discard this patch.
tools/php-cs-fixer/vendor/composer/xdebug-handler/src/Process.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     public static function escape($arg, $meta = true, $module = false)
34 34
     {
35 35
         if (!defined('PHP_WINDOWS_VERSION_BUILD')) {
36
-            return "'".str_replace("'", "'\\''", $arg)."'";
36
+            return "'" . str_replace("'", "'\\''", $arg) . "'";
37 37
         }
38 38
 
39 39
         $quote = strpbrk($arg, " \t") !== false || $arg === '';
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
         }
52 52
 
53 53
         if ($quote) {
54
-            $arg = '"'.preg_replace('/(\\\\*)$/', '$1$1', $arg).'"';
54
+            $arg = '"' . preg_replace('/(\\\\*)$/', '$1$1', $arg) . '"';
55 55
         }
56 56
 
57 57
         if ($meta) {
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     {
73 73
         $cmd = self::escape(array_shift($args), true, true);
74 74
         foreach ($args as $arg) {
75
-            $cmd .= ' '.self::escape($arg);
75
+            $cmd .= ' ' . self::escape($arg);
76 76
         }
77 77
 
78 78
         return $cmd;
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     {
91 91
         $unset = null === $value;
92 92
 
93
-        if (!putenv($unset ? $name : $name.'='.$value)) {
93
+        if (!putenv($unset ? $name : $name . '=' . $value)) {
94 94
             return false;
95 95
         }
96 96
 
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
         }
102 102
 
103 103
         // Update $_ENV if it is being used
104
-        if (false !== stripos((string) ini_get('variables_order'), 'E')) {
104
+        if (false !== stripos((string)ini_get('variables_order'), 'E')) {
105 105
             if ($unset) {
106 106
                 unset($_ENV[$name]);
107 107
             } else {
Please login to merge, or discard this patch.
tools/php-cs-fixer/vendor/composer/xdebug-handler/src/Status.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     public function report($op, $data)
70 70
     {
71 71
         if ($this->logger || $this->debug) {
72
-            call_user_func(array($this, 'report'.$op), $data);
72
+            call_user_func(array($this, 'report' . $op), $data);
73 73
         }
74 74
     }
75 75
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
         }
87 87
 
88 88
         if ($this->debug) {
89
-            fwrite(STDERR, sprintf('xdebug-handler[%d] %s', getmypid(), $text.PHP_EOL));
89
+            fwrite(STDERR, sprintf('xdebug-handler[%d] %s', getmypid(), $text . PHP_EOL));
90 90
         }
91 91
     }
92 92
 
@@ -95,10 +95,10 @@  discard block
 block discarded – undo
95 95
         list($version, $mode) = explode('|', $loaded);
96 96
 
97 97
         if ($version) {
98
-            $this->loaded = '('.$version.')'.($mode ? ' mode='.$mode : '');
98
+            $this->loaded = '(' . $version . ')' . ($mode ? ' mode=' . $mode : '');
99 99
         }
100 100
         $this->modeOff = $mode === 'off';
101
-        $this->output('Checking '.$this->envAllowXdebug);
101
+        $this->output('Checking ' . $this->envAllowXdebug);
102 102
     }
103 103
 
104 104
     private function reportError($error)
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
         if ($this->loaded) {
119 119
             $text = sprintf('No restart (%s)', $this->getEnvAllow());
120 120
             if (!getenv($this->envAllowXdebug)) {
121
-                $text .= ' Allowed by '.($this->modeOff ? 'mode' : 'application');
121
+                $text .= ' Allowed by ' . ($this->modeOff ? 'mode' : 'application');
122 122
             }
123 123
             $this->output($text);
124 124
         }
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
     private function reportRestart()
128 128
     {
129 129
         $this->output($this->getLoadedMessage());
130
-        Process::setEnv(self::ENV_RESTART, (string) microtime(true));
130
+        Process::setEnv(self::ENV_RESTART, (string)microtime(true));
131 131
     }
132 132
 
133 133
     private function reportRestarted()
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     {
143 143
         $text = sprintf('Process restarting (%s)', $this->getEnvAllow());
144 144
         $this->output($text);
145
-        $text = 'Running '.$command;
145
+        $text = 'Running ' . $command;
146 146
         $this->output($text);
147 147
     }
148 148
 
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
      */
154 154
     private function getEnvAllow()
155 155
     {
156
-        return $this->envAllowXdebug.'='.getenv($this->envAllowXdebug);
156
+        return $this->envAllowXdebug . '=' . getenv($this->envAllowXdebug);
157 157
     }
158 158
 
159 159
     /**
@@ -164,6 +164,6 @@  discard block
 block discarded – undo
164 164
     private function getLoadedMessage()
165 165
     {
166 166
         $loaded = $this->loaded ? sprintf('loaded %s', $this->loaded) : 'not loaded';
167
-        return 'The Xdebug extension is '.$loaded;
167
+        return 'The Xdebug extension is ' . $loaded;
168 168
     }
169 169
 }
Please login to merge, or discard this patch.
tools/php-cs-fixer/vendor/composer/InstalledVersions.php 2 patches
Indentation   +195 added lines, -195 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@  discard block
 block discarded – undo
22 22
 class InstalledVersions
23 23
 {
24 24
 private static $installed = array (
25
-  'root' => 
26
-  array (
25
+    'root' => 
26
+    array (
27 27
     'pretty_version' => 'dev-master',
28 28
     'version' => 'dev-master',
29 29
     'aliases' => 
@@ -31,301 +31,301 @@  discard block
 block discarded – undo
31 31
     ),
32 32
     'reference' => 'f9107a280a57f1f24ca4232ab18e6afd62ecf7c7',
33 33
     'name' => '__root__',
34
-  ),
35
-  'versions' => 
36
-  array (
34
+    ),
35
+    'versions' => 
36
+    array (
37 37
     '__root__' => 
38 38
     array (
39
-      'pretty_version' => 'dev-master',
40
-      'version' => 'dev-master',
41
-      'aliases' => 
42
-      array (
43
-      ),
44
-      'reference' => 'f9107a280a57f1f24ca4232ab18e6afd62ecf7c7',
39
+        'pretty_version' => 'dev-master',
40
+        'version' => 'dev-master',
41
+        'aliases' => 
42
+        array (
43
+        ),
44
+        'reference' => 'f9107a280a57f1f24ca4232ab18e6afd62ecf7c7',
45 45
     ),
46 46
     'composer/semver' => 
47 47
     array (
48
-      'pretty_version' => '3.2.5',
49
-      'version' => '3.2.5.0',
50
-      'aliases' => 
51
-      array (
52
-      ),
53
-      'reference' => '31f3ea725711245195f62e54ffa402d8ef2fdba9',
48
+        'pretty_version' => '3.2.5',
49
+        'version' => '3.2.5.0',
50
+        'aliases' => 
51
+        array (
52
+        ),
53
+        'reference' => '31f3ea725711245195f62e54ffa402d8ef2fdba9',
54 54
     ),
55 55
     'composer/xdebug-handler' => 
56 56
     array (
57
-      'pretty_version' => '2.0.1',
58
-      'version' => '2.0.1.0',
59
-      'aliases' => 
60
-      array (
61
-      ),
62
-      'reference' => '964adcdd3a28bf9ed5d9ac6450064e0d71ed7496',
57
+        'pretty_version' => '2.0.1',
58
+        'version' => '2.0.1.0',
59
+        'aliases' => 
60
+        array (
61
+        ),
62
+        'reference' => '964adcdd3a28bf9ed5d9ac6450064e0d71ed7496',
63 63
     ),
64 64
     'doctrine/annotations' => 
65 65
     array (
66
-      'pretty_version' => '1.13.1',
67
-      'version' => '1.13.1.0',
68
-      'aliases' => 
69
-      array (
70
-      ),
71
-      'reference' => 'e6e7b7d5b45a2f2abc5460cc6396480b2b1d321f',
66
+        'pretty_version' => '1.13.1',
67
+        'version' => '1.13.1.0',
68
+        'aliases' => 
69
+        array (
70
+        ),
71
+        'reference' => 'e6e7b7d5b45a2f2abc5460cc6396480b2b1d321f',
72 72
     ),
73 73
     'doctrine/lexer' => 
74 74
     array (
75
-      'pretty_version' => '1.2.1',
76
-      'version' => '1.2.1.0',
77
-      'aliases' => 
78
-      array (
79
-      ),
80
-      'reference' => 'e864bbf5904cb8f5bb334f99209b48018522f042',
75
+        'pretty_version' => '1.2.1',
76
+        'version' => '1.2.1.0',
77
+        'aliases' => 
78
+        array (
79
+        ),
80
+        'reference' => 'e864bbf5904cb8f5bb334f99209b48018522f042',
81 81
     ),
82 82
     'friendsofphp/php-cs-fixer' => 
83 83
     array (
84
-      'pretty_version' => 'v3.1.0',
85
-      'version' => '3.1.0.0',
86
-      'aliases' => 
87
-      array (
88
-      ),
89
-      'reference' => 'cf4cedb9e8991c2daa94a756176d81bf487e4c4b',
84
+        'pretty_version' => 'v3.1.0',
85
+        'version' => '3.1.0.0',
86
+        'aliases' => 
87
+        array (
88
+        ),
89
+        'reference' => 'cf4cedb9e8991c2daa94a756176d81bf487e4c4b',
90 90
     ),
91 91
     'php-cs-fixer/diff' => 
92 92
     array (
93
-      'pretty_version' => 'v2.0.2',
94
-      'version' => '2.0.2.0',
95
-      'aliases' => 
96
-      array (
97
-      ),
98
-      'reference' => '29dc0d507e838c4580d018bd8b5cb412474f7ec3',
93
+        'pretty_version' => 'v2.0.2',
94
+        'version' => '2.0.2.0',
95
+        'aliases' => 
96
+        array (
97
+        ),
98
+        'reference' => '29dc0d507e838c4580d018bd8b5cb412474f7ec3',
99 99
     ),
100 100
     'psr/cache' => 
101 101
     array (
102
-      'pretty_version' => '1.0.1',
103
-      'version' => '1.0.1.0',
104
-      'aliases' => 
105
-      array (
106
-      ),
107
-      'reference' => 'd11b50ad223250cf17b86e38383413f5a6764bf8',
102
+        'pretty_version' => '1.0.1',
103
+        'version' => '1.0.1.0',
104
+        'aliases' => 
105
+        array (
106
+        ),
107
+        'reference' => 'd11b50ad223250cf17b86e38383413f5a6764bf8',
108 108
     ),
109 109
     'psr/container' => 
110 110
     array (
111
-      'pretty_version' => '1.1.1',
112
-      'version' => '1.1.1.0',
113
-      'aliases' => 
114
-      array (
115
-      ),
116
-      'reference' => '8622567409010282b7aeebe4bb841fe98b58dcaf',
111
+        'pretty_version' => '1.1.1',
112
+        'version' => '1.1.1.0',
113
+        'aliases' => 
114
+        array (
115
+        ),
116
+        'reference' => '8622567409010282b7aeebe4bb841fe98b58dcaf',
117 117
     ),
118 118
     'psr/event-dispatcher' => 
119 119
     array (
120
-      'pretty_version' => '1.0.0',
121
-      'version' => '1.0.0.0',
122
-      'aliases' => 
123
-      array (
124
-      ),
125
-      'reference' => 'dbefd12671e8a14ec7f180cab83036ed26714bb0',
120
+        'pretty_version' => '1.0.0',
121
+        'version' => '1.0.0.0',
122
+        'aliases' => 
123
+        array (
124
+        ),
125
+        'reference' => 'dbefd12671e8a14ec7f180cab83036ed26714bb0',
126 126
     ),
127 127
     'psr/event-dispatcher-implementation' => 
128 128
     array (
129
-      'provided' => 
130
-      array (
129
+        'provided' => 
130
+        array (
131 131
         0 => '1.0',
132
-      ),
132
+        ),
133 133
     ),
134 134
     'psr/log' => 
135 135
     array (
136
-      'pretty_version' => '1.1.4',
137
-      'version' => '1.1.4.0',
138
-      'aliases' => 
139
-      array (
140
-      ),
141
-      'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11',
136
+        'pretty_version' => '1.1.4',
137
+        'version' => '1.1.4.0',
138
+        'aliases' => 
139
+        array (
140
+        ),
141
+        'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11',
142 142
     ),
143 143
     'psr/log-implementation' => 
144 144
     array (
145
-      'provided' => 
146
-      array (
145
+        'provided' => 
146
+        array (
147 147
         0 => '1.0',
148
-      ),
148
+        ),
149 149
     ),
150 150
     'symfony/console' => 
151 151
     array (
152
-      'pretty_version' => 'v5.3.0',
153
-      'version' => '5.3.0.0',
154
-      'aliases' => 
155
-      array (
156
-      ),
157
-      'reference' => '058553870f7809087fa80fa734704a21b9bcaeb2',
152
+        'pretty_version' => 'v5.3.0',
153
+        'version' => '5.3.0.0',
154
+        'aliases' => 
155
+        array (
156
+        ),
157
+        'reference' => '058553870f7809087fa80fa734704a21b9bcaeb2',
158 158
     ),
159 159
     'symfony/deprecation-contracts' => 
160 160
     array (
161
-      'pretty_version' => 'v2.4.0',
162
-      'version' => '2.4.0.0',
163
-      'aliases' => 
164
-      array (
165
-      ),
166
-      'reference' => '5f38c8804a9e97d23e0c8d63341088cd8a22d627',
161
+        'pretty_version' => 'v2.4.0',
162
+        'version' => '2.4.0.0',
163
+        'aliases' => 
164
+        array (
165
+        ),
166
+        'reference' => '5f38c8804a9e97d23e0c8d63341088cd8a22d627',
167 167
     ),
168 168
     'symfony/event-dispatcher' => 
169 169
     array (
170
-      'pretty_version' => 'v5.3.0',
171
-      'version' => '5.3.0.0',
172
-      'aliases' => 
173
-      array (
174
-      ),
175
-      'reference' => '67a5f354afa8e2f231081b3fa11a5912f933c3ce',
170
+        'pretty_version' => 'v5.3.0',
171
+        'version' => '5.3.0.0',
172
+        'aliases' => 
173
+        array (
174
+        ),
175
+        'reference' => '67a5f354afa8e2f231081b3fa11a5912f933c3ce',
176 176
     ),
177 177
     'symfony/event-dispatcher-contracts' => 
178 178
     array (
179
-      'pretty_version' => 'v2.4.0',
180
-      'version' => '2.4.0.0',
181
-      'aliases' => 
182
-      array (
183
-      ),
184
-      'reference' => '69fee1ad2332a7cbab3aca13591953da9cdb7a11',
179
+        'pretty_version' => 'v2.4.0',
180
+        'version' => '2.4.0.0',
181
+        'aliases' => 
182
+        array (
183
+        ),
184
+        'reference' => '69fee1ad2332a7cbab3aca13591953da9cdb7a11',
185 185
     ),
186 186
     'symfony/event-dispatcher-implementation' => 
187 187
     array (
188
-      'provided' => 
189
-      array (
188
+        'provided' => 
189
+        array (
190 190
         0 => '2.0',
191
-      ),
191
+        ),
192 192
     ),
193 193
     'symfony/filesystem' => 
194 194
     array (
195
-      'pretty_version' => 'v5.3.0',
196
-      'version' => '5.3.0.0',
197
-      'aliases' => 
198
-      array (
199
-      ),
200
-      'reference' => '348116319d7fb7d1faa781d26a48922428013eb2',
195
+        'pretty_version' => 'v5.3.0',
196
+        'version' => '5.3.0.0',
197
+        'aliases' => 
198
+        array (
199
+        ),
200
+        'reference' => '348116319d7fb7d1faa781d26a48922428013eb2',
201 201
     ),
202 202
     'symfony/finder' => 
203 203
     array (
204
-      'pretty_version' => 'v5.3.0',
205
-      'version' => '5.3.0.0',
206
-      'aliases' => 
207
-      array (
208
-      ),
209
-      'reference' => '0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6',
204
+        'pretty_version' => 'v5.3.0',
205
+        'version' => '5.3.0.0',
206
+        'aliases' => 
207
+        array (
208
+        ),
209
+        'reference' => '0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6',
210 210
     ),
211 211
     'symfony/options-resolver' => 
212 212
     array (
213
-      'pretty_version' => 'v5.3.0',
214
-      'version' => '5.3.0.0',
215
-      'aliases' => 
216
-      array (
217
-      ),
218
-      'reference' => '162e886ca035869866d233a2bfef70cc28f9bbe5',
213
+        'pretty_version' => 'v5.3.0',
214
+        'version' => '5.3.0.0',
215
+        'aliases' => 
216
+        array (
217
+        ),
218
+        'reference' => '162e886ca035869866d233a2bfef70cc28f9bbe5',
219 219
     ),
220 220
     'symfony/polyfill-ctype' => 
221 221
     array (
222
-      'pretty_version' => 'v1.23.0',
223
-      'version' => '1.23.0.0',
224
-      'aliases' => 
225
-      array (
226
-      ),
227
-      'reference' => '46cd95797e9df938fdd2b03693b5fca5e64b01ce',
222
+        'pretty_version' => 'v1.23.0',
223
+        'version' => '1.23.0.0',
224
+        'aliases' => 
225
+        array (
226
+        ),
227
+        'reference' => '46cd95797e9df938fdd2b03693b5fca5e64b01ce',
228 228
     ),
229 229
     'symfony/polyfill-intl-grapheme' => 
230 230
     array (
231
-      'pretty_version' => 'v1.23.0',
232
-      'version' => '1.23.0.0',
233
-      'aliases' => 
234
-      array (
235
-      ),
236
-      'reference' => '24b72c6baa32c746a4d0840147c9715e42bb68ab',
231
+        'pretty_version' => 'v1.23.0',
232
+        'version' => '1.23.0.0',
233
+        'aliases' => 
234
+        array (
235
+        ),
236
+        'reference' => '24b72c6baa32c746a4d0840147c9715e42bb68ab',
237 237
     ),
238 238
     'symfony/polyfill-intl-normalizer' => 
239 239
     array (
240
-      'pretty_version' => 'v1.23.0',
241
-      'version' => '1.23.0.0',
242
-      'aliases' => 
243
-      array (
244
-      ),
245
-      'reference' => '8590a5f561694770bdcd3f9b5c69dde6945028e8',
240
+        'pretty_version' => 'v1.23.0',
241
+        'version' => '1.23.0.0',
242
+        'aliases' => 
243
+        array (
244
+        ),
245
+        'reference' => '8590a5f561694770bdcd3f9b5c69dde6945028e8',
246 246
     ),
247 247
     'symfony/polyfill-mbstring' => 
248 248
     array (
249
-      'pretty_version' => 'v1.23.0',
250
-      'version' => '1.23.0.0',
251
-      'aliases' => 
252
-      array (
253
-      ),
254
-      'reference' => '2df51500adbaebdc4c38dea4c89a2e131c45c8a1',
249
+        'pretty_version' => 'v1.23.0',
250
+        'version' => '1.23.0.0',
251
+        'aliases' => 
252
+        array (
253
+        ),
254
+        'reference' => '2df51500adbaebdc4c38dea4c89a2e131c45c8a1',
255 255
     ),
256 256
     'symfony/polyfill-php72' => 
257 257
     array (
258
-      'pretty_version' => 'v1.23.0',
259
-      'version' => '1.23.0.0',
260
-      'aliases' => 
261
-      array (
262
-      ),
263
-      'reference' => '9a142215a36a3888e30d0a9eeea9766764e96976',
258
+        'pretty_version' => 'v1.23.0',
259
+        'version' => '1.23.0.0',
260
+        'aliases' => 
261
+        array (
262
+        ),
263
+        'reference' => '9a142215a36a3888e30d0a9eeea9766764e96976',
264 264
     ),
265 265
     'symfony/polyfill-php73' => 
266 266
     array (
267
-      'pretty_version' => 'v1.23.0',
268
-      'version' => '1.23.0.0',
269
-      'aliases' => 
270
-      array (
271
-      ),
272
-      'reference' => 'fba8933c384d6476ab14fb7b8526e5287ca7e010',
267
+        'pretty_version' => 'v1.23.0',
268
+        'version' => '1.23.0.0',
269
+        'aliases' => 
270
+        array (
271
+        ),
272
+        'reference' => 'fba8933c384d6476ab14fb7b8526e5287ca7e010',
273 273
     ),
274 274
     'symfony/polyfill-php80' => 
275 275
     array (
276
-      'pretty_version' => 'v1.23.0',
277
-      'version' => '1.23.0.0',
278
-      'aliases' => 
279
-      array (
280
-      ),
281
-      'reference' => 'eca0bf41ed421bed1b57c4958bab16aa86b757d0',
276
+        'pretty_version' => 'v1.23.0',
277
+        'version' => '1.23.0.0',
278
+        'aliases' => 
279
+        array (
280
+        ),
281
+        'reference' => 'eca0bf41ed421bed1b57c4958bab16aa86b757d0',
282 282
     ),
283 283
     'symfony/polyfill-php81' => 
284 284
     array (
285
-      'pretty_version' => 'v1.23.0',
286
-      'version' => '1.23.0.0',
287
-      'aliases' => 
288
-      array (
289
-      ),
290
-      'reference' => 'e66119f3de95efc359483f810c4c3e6436279436',
285
+        'pretty_version' => 'v1.23.0',
286
+        'version' => '1.23.0.0',
287
+        'aliases' => 
288
+        array (
289
+        ),
290
+        'reference' => 'e66119f3de95efc359483f810c4c3e6436279436',
291 291
     ),
292 292
     'symfony/process' => 
293 293
     array (
294
-      'pretty_version' => 'v5.3.0',
295
-      'version' => '5.3.0.0',
296
-      'aliases' => 
297
-      array (
298
-      ),
299
-      'reference' => '53e36cb1c160505cdaf1ef201501669c4c317191',
294
+        'pretty_version' => 'v5.3.0',
295
+        'version' => '5.3.0.0',
296
+        'aliases' => 
297
+        array (
298
+        ),
299
+        'reference' => '53e36cb1c160505cdaf1ef201501669c4c317191',
300 300
     ),
301 301
     'symfony/service-contracts' => 
302 302
     array (
303
-      'pretty_version' => 'v2.4.0',
304
-      'version' => '2.4.0.0',
305
-      'aliases' => 
306
-      array (
307
-      ),
308
-      'reference' => 'f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb',
303
+        'pretty_version' => 'v2.4.0',
304
+        'version' => '2.4.0.0',
305
+        'aliases' => 
306
+        array (
307
+        ),
308
+        'reference' => 'f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb',
309 309
     ),
310 310
     'symfony/stopwatch' => 
311 311
     array (
312
-      'pretty_version' => 'v5.3.0',
313
-      'version' => '5.3.0.0',
314
-      'aliases' => 
315
-      array (
316
-      ),
317
-      'reference' => '313d02f59d6543311865007e5ff4ace05b35ee65',
312
+        'pretty_version' => 'v5.3.0',
313
+        'version' => '5.3.0.0',
314
+        'aliases' => 
315
+        array (
316
+        ),
317
+        'reference' => '313d02f59d6543311865007e5ff4ace05b35ee65',
318 318
     ),
319 319
     'symfony/string' => 
320 320
     array (
321
-      'pretty_version' => 'v5.3.0',
322
-      'version' => '5.3.0.0',
323
-      'aliases' => 
324
-      array (
325
-      ),
326
-      'reference' => 'a9a0f8b6aafc5d2d1c116dcccd1573a95153515b',
321
+        'pretty_version' => 'v5.3.0',
322
+        'version' => '5.3.0.0',
323
+        'aliases' => 
324
+        array (
325
+        ),
326
+        'reference' => 'a9a0f8b6aafc5d2d1c116dcccd1573a95153515b',
327
+    ),
327 328
     ),
328
-  ),
329 329
 );
330 330
 
331 331
 
Please login to merge, or discard this patch.
Spacing   +70 added lines, -70 removed lines patch added patch discarded remove patch
@@ -21,307 +21,307 @@
 block discarded – undo
21 21
 
22 22
 class InstalledVersions
23 23
 {
24
-private static $installed = array (
24
+private static $installed = array(
25 25
   'root' => 
26
-  array (
26
+  array(
27 27
     'pretty_version' => 'dev-master',
28 28
     'version' => 'dev-master',
29 29
     'aliases' => 
30
-    array (
30
+    array(
31 31
     ),
32 32
     'reference' => 'f9107a280a57f1f24ca4232ab18e6afd62ecf7c7',
33 33
     'name' => '__root__',
34 34
   ),
35 35
   'versions' => 
36
-  array (
36
+  array(
37 37
     '__root__' => 
38
-    array (
38
+    array(
39 39
       'pretty_version' => 'dev-master',
40 40
       'version' => 'dev-master',
41 41
       'aliases' => 
42
-      array (
42
+      array(
43 43
       ),
44 44
       'reference' => 'f9107a280a57f1f24ca4232ab18e6afd62ecf7c7',
45 45
     ),
46 46
     'composer/semver' => 
47
-    array (
47
+    array(
48 48
       'pretty_version' => '3.2.5',
49 49
       'version' => '3.2.5.0',
50 50
       'aliases' => 
51
-      array (
51
+      array(
52 52
       ),
53 53
       'reference' => '31f3ea725711245195f62e54ffa402d8ef2fdba9',
54 54
     ),
55 55
     'composer/xdebug-handler' => 
56
-    array (
56
+    array(
57 57
       'pretty_version' => '2.0.1',
58 58
       'version' => '2.0.1.0',
59 59
       'aliases' => 
60
-      array (
60
+      array(
61 61
       ),
62 62
       'reference' => '964adcdd3a28bf9ed5d9ac6450064e0d71ed7496',
63 63
     ),
64 64
     'doctrine/annotations' => 
65
-    array (
65
+    array(
66 66
       'pretty_version' => '1.13.1',
67 67
       'version' => '1.13.1.0',
68 68
       'aliases' => 
69
-      array (
69
+      array(
70 70
       ),
71 71
       'reference' => 'e6e7b7d5b45a2f2abc5460cc6396480b2b1d321f',
72 72
     ),
73 73
     'doctrine/lexer' => 
74
-    array (
74
+    array(
75 75
       'pretty_version' => '1.2.1',
76 76
       'version' => '1.2.1.0',
77 77
       'aliases' => 
78
-      array (
78
+      array(
79 79
       ),
80 80
       'reference' => 'e864bbf5904cb8f5bb334f99209b48018522f042',
81 81
     ),
82 82
     'friendsofphp/php-cs-fixer' => 
83
-    array (
83
+    array(
84 84
       'pretty_version' => 'v3.1.0',
85 85
       'version' => '3.1.0.0',
86 86
       'aliases' => 
87
-      array (
87
+      array(
88 88
       ),
89 89
       'reference' => 'cf4cedb9e8991c2daa94a756176d81bf487e4c4b',
90 90
     ),
91 91
     'php-cs-fixer/diff' => 
92
-    array (
92
+    array(
93 93
       'pretty_version' => 'v2.0.2',
94 94
       'version' => '2.0.2.0',
95 95
       'aliases' => 
96
-      array (
96
+      array(
97 97
       ),
98 98
       'reference' => '29dc0d507e838c4580d018bd8b5cb412474f7ec3',
99 99
     ),
100 100
     'psr/cache' => 
101
-    array (
101
+    array(
102 102
       'pretty_version' => '1.0.1',
103 103
       'version' => '1.0.1.0',
104 104
       'aliases' => 
105
-      array (
105
+      array(
106 106
       ),
107 107
       'reference' => 'd11b50ad223250cf17b86e38383413f5a6764bf8',
108 108
     ),
109 109
     'psr/container' => 
110
-    array (
110
+    array(
111 111
       'pretty_version' => '1.1.1',
112 112
       'version' => '1.1.1.0',
113 113
       'aliases' => 
114
-      array (
114
+      array(
115 115
       ),
116 116
       'reference' => '8622567409010282b7aeebe4bb841fe98b58dcaf',
117 117
     ),
118 118
     'psr/event-dispatcher' => 
119
-    array (
119
+    array(
120 120
       'pretty_version' => '1.0.0',
121 121
       'version' => '1.0.0.0',
122 122
       'aliases' => 
123
-      array (
123
+      array(
124 124
       ),
125 125
       'reference' => 'dbefd12671e8a14ec7f180cab83036ed26714bb0',
126 126
     ),
127 127
     'psr/event-dispatcher-implementation' => 
128
-    array (
128
+    array(
129 129
       'provided' => 
130
-      array (
130
+      array(
131 131
         0 => '1.0',
132 132
       ),
133 133
     ),
134 134
     'psr/log' => 
135
-    array (
135
+    array(
136 136
       'pretty_version' => '1.1.4',
137 137
       'version' => '1.1.4.0',
138 138
       'aliases' => 
139
-      array (
139
+      array(
140 140
       ),
141 141
       'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11',
142 142
     ),
143 143
     'psr/log-implementation' => 
144
-    array (
144
+    array(
145 145
       'provided' => 
146
-      array (
146
+      array(
147 147
         0 => '1.0',
148 148
       ),
149 149
     ),
150 150
     'symfony/console' => 
151
-    array (
151
+    array(
152 152
       'pretty_version' => 'v5.3.0',
153 153
       'version' => '5.3.0.0',
154 154
       'aliases' => 
155
-      array (
155
+      array(
156 156
       ),
157 157
       'reference' => '058553870f7809087fa80fa734704a21b9bcaeb2',
158 158
     ),
159 159
     'symfony/deprecation-contracts' => 
160
-    array (
160
+    array(
161 161
       'pretty_version' => 'v2.4.0',
162 162
       'version' => '2.4.0.0',
163 163
       'aliases' => 
164
-      array (
164
+      array(
165 165
       ),
166 166
       'reference' => '5f38c8804a9e97d23e0c8d63341088cd8a22d627',
167 167
     ),
168 168
     'symfony/event-dispatcher' => 
169
-    array (
169
+    array(
170 170
       'pretty_version' => 'v5.3.0',
171 171
       'version' => '5.3.0.0',
172 172
       'aliases' => 
173
-      array (
173
+      array(
174 174
       ),
175 175
       'reference' => '67a5f354afa8e2f231081b3fa11a5912f933c3ce',
176 176
     ),
177 177
     'symfony/event-dispatcher-contracts' => 
178
-    array (
178
+    array(
179 179
       'pretty_version' => 'v2.4.0',
180 180
       'version' => '2.4.0.0',
181 181
       'aliases' => 
182
-      array (
182
+      array(
183 183
       ),
184 184
       'reference' => '69fee1ad2332a7cbab3aca13591953da9cdb7a11',
185 185
     ),
186 186
     'symfony/event-dispatcher-implementation' => 
187
-    array (
187
+    array(
188 188
       'provided' => 
189
-      array (
189
+      array(
190 190
         0 => '2.0',
191 191
       ),
192 192
     ),
193 193
     'symfony/filesystem' => 
194
-    array (
194
+    array(
195 195
       'pretty_version' => 'v5.3.0',
196 196
       'version' => '5.3.0.0',
197 197
       'aliases' => 
198
-      array (
198
+      array(
199 199
       ),
200 200
       'reference' => '348116319d7fb7d1faa781d26a48922428013eb2',
201 201
     ),
202 202
     'symfony/finder' => 
203
-    array (
203
+    array(
204 204
       'pretty_version' => 'v5.3.0',
205 205
       'version' => '5.3.0.0',
206 206
       'aliases' => 
207
-      array (
207
+      array(
208 208
       ),
209 209
       'reference' => '0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6',
210 210
     ),
211 211
     'symfony/options-resolver' => 
212
-    array (
212
+    array(
213 213
       'pretty_version' => 'v5.3.0',
214 214
       'version' => '5.3.0.0',
215 215
       'aliases' => 
216
-      array (
216
+      array(
217 217
       ),
218 218
       'reference' => '162e886ca035869866d233a2bfef70cc28f9bbe5',
219 219
     ),
220 220
     'symfony/polyfill-ctype' => 
221
-    array (
221
+    array(
222 222
       'pretty_version' => 'v1.23.0',
223 223
       'version' => '1.23.0.0',
224 224
       'aliases' => 
225
-      array (
225
+      array(
226 226
       ),
227 227
       'reference' => '46cd95797e9df938fdd2b03693b5fca5e64b01ce',
228 228
     ),
229 229
     'symfony/polyfill-intl-grapheme' => 
230
-    array (
230
+    array(
231 231
       'pretty_version' => 'v1.23.0',
232 232
       'version' => '1.23.0.0',
233 233
       'aliases' => 
234
-      array (
234
+      array(
235 235
       ),
236 236
       'reference' => '24b72c6baa32c746a4d0840147c9715e42bb68ab',
237 237
     ),
238 238
     'symfony/polyfill-intl-normalizer' => 
239
-    array (
239
+    array(
240 240
       'pretty_version' => 'v1.23.0',
241 241
       'version' => '1.23.0.0',
242 242
       'aliases' => 
243
-      array (
243
+      array(
244 244
       ),
245 245
       'reference' => '8590a5f561694770bdcd3f9b5c69dde6945028e8',
246 246
     ),
247 247
     'symfony/polyfill-mbstring' => 
248
-    array (
248
+    array(
249 249
       'pretty_version' => 'v1.23.0',
250 250
       'version' => '1.23.0.0',
251 251
       'aliases' => 
252
-      array (
252
+      array(
253 253
       ),
254 254
       'reference' => '2df51500adbaebdc4c38dea4c89a2e131c45c8a1',
255 255
     ),
256 256
     'symfony/polyfill-php72' => 
257
-    array (
257
+    array(
258 258
       'pretty_version' => 'v1.23.0',
259 259
       'version' => '1.23.0.0',
260 260
       'aliases' => 
261
-      array (
261
+      array(
262 262
       ),
263 263
       'reference' => '9a142215a36a3888e30d0a9eeea9766764e96976',
264 264
     ),
265 265
     'symfony/polyfill-php73' => 
266
-    array (
266
+    array(
267 267
       'pretty_version' => 'v1.23.0',
268 268
       'version' => '1.23.0.0',
269 269
       'aliases' => 
270
-      array (
270
+      array(
271 271
       ),
272 272
       'reference' => 'fba8933c384d6476ab14fb7b8526e5287ca7e010',
273 273
     ),
274 274
     'symfony/polyfill-php80' => 
275
-    array (
275
+    array(
276 276
       'pretty_version' => 'v1.23.0',
277 277
       'version' => '1.23.0.0',
278 278
       'aliases' => 
279
-      array (
279
+      array(
280 280
       ),
281 281
       'reference' => 'eca0bf41ed421bed1b57c4958bab16aa86b757d0',
282 282
     ),
283 283
     'symfony/polyfill-php81' => 
284
-    array (
284
+    array(
285 285
       'pretty_version' => 'v1.23.0',
286 286
       'version' => '1.23.0.0',
287 287
       'aliases' => 
288
-      array (
288
+      array(
289 289
       ),
290 290
       'reference' => 'e66119f3de95efc359483f810c4c3e6436279436',
291 291
     ),
292 292
     'symfony/process' => 
293
-    array (
293
+    array(
294 294
       'pretty_version' => 'v5.3.0',
295 295
       'version' => '5.3.0.0',
296 296
       'aliases' => 
297
-      array (
297
+      array(
298 298
       ),
299 299
       'reference' => '53e36cb1c160505cdaf1ef201501669c4c317191',
300 300
     ),
301 301
     'symfony/service-contracts' => 
302
-    array (
302
+    array(
303 303
       'pretty_version' => 'v2.4.0',
304 304
       'version' => '2.4.0.0',
305 305
       'aliases' => 
306
-      array (
306
+      array(
307 307
       ),
308 308
       'reference' => 'f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb',
309 309
     ),
310 310
     'symfony/stopwatch' => 
311
-    array (
311
+    array(
312 312
       'pretty_version' => 'v5.3.0',
313 313
       'version' => '5.3.0.0',
314 314
       'aliases' => 
315
-      array (
315
+      array(
316 316
       ),
317 317
       'reference' => '313d02f59d6543311865007e5ff4ace05b35ee65',
318 318
     ),
319 319
     'symfony/string' => 
320
-    array (
320
+    array(
321 321
       'pretty_version' => 'v5.3.0',
322 322
       'version' => '5.3.0.0',
323 323
       'aliases' => 
324
-      array (
324
+      array(
325 325
       ),
326 326
       'reference' => 'a9a0f8b6aafc5d2d1c116dcccd1573a95153515b',
327 327
     ),
Please login to merge, or discard this patch.