GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( d0e8f5...07c97c )
by Calima
04:13
created
symfony/console/Symfony/Component/Console/Descriptor/JsonDescriptor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -115,8 +115,8 @@
 block discarded – undo
115 115
     private function getInputOptionData(InputOption $option)
116 116
     {
117 117
         return array(
118
-            'name' => '--'.$option->getName(),
119
-            'shortcut' => $option->getShortcut() ? '-'.implode('|-', explode('|', $option->getShortcut())) : '',
118
+            'name' => '--' . $option->getName(),
119
+            'shortcut' => $option->getShortcut() ? '-' . implode('|-', explode('|', $option->getShortcut())) : '',
120 120
             'accept_value' => $option->acceptValue(),
121 121
             'is_value_required' => $option->isValueRequired(),
122 122
             'is_multiple' => $option->isArray(),
Please login to merge, or discard this patch.
symfony/console/Symfony/Component/Console/Descriptor/MarkdownDescriptor.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -32,12 +32,12 @@  discard block
 block discarded – undo
32 32
     protected function describeInputArgument(InputArgument $argument, array $options = array())
33 33
     {
34 34
         $this->write(
35
-            '**'.$argument->getName().':**'."\n\n"
36
-            .'* Name: '.($argument->getName() ?: '<none>')."\n"
37
-            .'* Is required: '.($argument->isRequired() ? 'yes' : 'no')."\n"
38
-            .'* Is array: '.($argument->isArray() ? 'yes' : 'no')."\n"
39
-            .'* Description: '.($argument->getDescription() ?: '<none>')."\n"
40
-            .'* Default: `'.str_replace("\n", '', var_export($argument->getDefault(), true)).'`'
35
+            '**' . $argument->getName() . ':**' . "\n\n"
36
+            .'* Name: ' . ($argument->getName() ?: '<none>') . "\n"
37
+            .'* Is required: ' . ($argument->isRequired() ? 'yes' : 'no') . "\n"
38
+            .'* Is array: ' . ($argument->isArray() ? 'yes' : 'no') . "\n"
39
+            .'* Description: ' . ($argument->getDescription() ?: '<none>') . "\n"
40
+            .'* Default: `' . str_replace("\n", '', var_export($argument->getDefault(), true)) . '`'
41 41
         );
42 42
     }
43 43
 
@@ -47,14 +47,14 @@  discard block
 block discarded – undo
47 47
     protected function describeInputOption(InputOption $option, array $options = array())
48 48
     {
49 49
         $this->write(
50
-            '**'.$option->getName().':**'."\n\n"
51
-            .'* Name: `--'.$option->getName().'`'."\n"
52
-            .'* Shortcut: '.($option->getShortcut() ? '`-'.implode('|-', explode('|', $option->getShortcut())).'`' : '<none>')."\n"
53
-            .'* Accept value: '.($option->acceptValue() ? 'yes' : 'no')."\n"
54
-            .'* Is value required: '.($option->isValueRequired() ? 'yes' : 'no')."\n"
55
-            .'* Is multiple: '.($option->isArray() ? 'yes' : 'no')."\n"
56
-            .'* Description: '.($option->getDescription() ?: '<none>')."\n"
57
-            .'* Default: `'.str_replace("\n", '', var_export($option->getDefault(), true)).'`'
50
+            '**' . $option->getName() . ':**' . "\n\n"
51
+            .'* Name: `--' . $option->getName() . '`' . "\n"
52
+            .'* Shortcut: ' . ($option->getShortcut() ? '`-' . implode('|-', explode('|', $option->getShortcut())) . '`' : '<none>') . "\n"
53
+            .'* Accept value: ' . ($option->acceptValue() ? 'yes' : 'no') . "\n"
54
+            .'* Is value required: ' . ($option->isValueRequired() ? 'yes' : 'no') . "\n"
55
+            .'* Is multiple: ' . ($option->isArray() ? 'yes' : 'no') . "\n"
56
+            .'* Description: ' . ($option->getDescription() ?: '<none>') . "\n"
57
+            .'* Default: `' . str_replace("\n", '', var_export($option->getDefault(), true)) . '`'
58 58
         );
59 59
     }
60 60
 
@@ -93,11 +93,11 @@  discard block
 block discarded – undo
93 93
         $command->mergeApplicationDefinition(false);
94 94
 
95 95
         $this->write(
96
-            $command->getName()."\n"
97
-            .str_repeat('-', strlen($command->getName()))."\n\n"
98
-            .'* Description: '.($command->getDescription() ?: '<none>')."\n"
99
-            .'* Usage: `'.$command->getSynopsis().'`'."\n"
100
-            .'* Aliases: '.(count($command->getAliases()) ? '`'.implode('`, `', $command->getAliases()).'`' : '<none>')
96
+            $command->getName() . "\n"
97
+            .str_repeat('-', strlen($command->getName())) . "\n\n"
98
+            .'* Description: ' . ($command->getDescription() ?: '<none>') . "\n"
99
+            .'* Usage: `' . $command->getSynopsis() . '`' . "\n"
100
+            .'* Aliases: ' . (count($command->getAliases()) ? '`' . implode('`, `', $command->getAliases()) . '`' : '<none>')
101 101
         );
102 102
 
103 103
         if ($help = $command->getProcessedHelp()) {
@@ -119,17 +119,17 @@  discard block
 block discarded – undo
119 119
         $describedNamespace = isset($options['namespace']) ? $options['namespace'] : null;
120 120
         $description = new ApplicationDescription($application, $describedNamespace);
121 121
 
122
-        $this->write($application->getName()."\n".str_repeat('=', strlen($application->getName())));
122
+        $this->write($application->getName() . "\n" . str_repeat('=', strlen($application->getName())));
123 123
 
124 124
         foreach ($description->getNamespaces() as $namespace) {
125 125
             if (ApplicationDescription::GLOBAL_NAMESPACE !== $namespace['id']) {
126 126
                 $this->write("\n\n");
127
-                $this->write('**'.$namespace['id'].':**');
127
+                $this->write('**' . $namespace['id'] . ':**');
128 128
             }
129 129
 
130 130
             $this->write("\n\n");
131
-            $this->write(implode("\n", array_map(function ($commandName) {
132
-                return '* '.$commandName;
131
+            $this->write(implode("\n", array_map(function($commandName) {
132
+                return '* ' . $commandName;
133 133
             }, $namespace['commands'])));
134 134
         }
135 135
 
Please login to merge, or discard this patch.
symfony/console/Symfony/Component/Console/Descriptor/TextDescriptor.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
         $this->writeText(sprintf(" <info>%-${nameWidth}s</info> %s%s",
43 43
             $argument->getName(),
44
-            str_replace("\n", "\n".str_repeat(' ', $nameWidth + 2), $argument->getDescription()),
44
+            str_replace("\n", "\n" . str_repeat(' ', $nameWidth + 2), $argument->getDescription()),
45 45
             $default
46 46
         ), $options);
47 47
     }
@@ -61,9 +61,9 @@  discard block
 block discarded – undo
61 61
         $nameWithShortcutWidth = $nameWidth - strlen($option->getName()) - 2;
62 62
 
63 63
         $this->writeText(sprintf(" <info>%s</info> %-${nameWithShortcutWidth}s%s%s%s",
64
-            '--'.$option->getName(),
64
+            '--' . $option->getName(),
65 65
             $option->getShortcut() ? sprintf('(-%s) ', $option->getShortcut()) : '',
66
-            str_replace("\n", "\n".str_repeat(' ', $nameWidth + 2), $option->getDescription()),
66
+            str_replace("\n", "\n" . str_repeat(' ', $nameWidth + 2), $option->getDescription()),
67 67
             $default,
68 68
             $option->isArray() ? '<comment> (multiple values allowed)</comment>' : ''
69 69
         ), $options);
@@ -120,12 +120,12 @@  discard block
 block discarded – undo
120 120
 
121 121
         $this->writeText('<comment>Usage:</comment>', $options);
122 122
         $this->writeText("\n");
123
-        $this->writeText(' '.$command->getSynopsis(), $options);
123
+        $this->writeText(' ' . $command->getSynopsis(), $options);
124 124
         $this->writeText("\n");
125 125
 
126 126
         if (count($command->getAliases()) > 0) {
127 127
             $this->writeText("\n");
128
-            $this->writeText('<comment>Aliases:</comment> <info>'.implode(', ', $command->getAliases()).'</info>', $options);
128
+            $this->writeText('<comment>Aliases:</comment> <info>' . implode(', ', $command->getAliases()) . '</info>', $options);
129 129
         }
130 130
 
131 131
         if ($definition = $command->getNativeDefinition()) {
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
         if ($help = $command->getProcessedHelp()) {
139 139
             $this->writeText('<comment>Help:</comment>', $options);
140 140
             $this->writeText("\n");
141
-            $this->writeText(' '.str_replace("\n", "\n ", $help), $options);
141
+            $this->writeText(' ' . str_replace("\n", "\n ", $help), $options);
142 142
             $this->writeText("\n");
143 143
         }
144 144
     }
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
             foreach ($description->getNamespaces() as $namespace) {
199 199
                 if (!$describedNamespace && ApplicationDescription::GLOBAL_NAMESPACE !== $namespace['id']) {
200 200
                     $this->writeText("\n");
201
-                    $this->writeText('<comment>'.$namespace['id'].'</comment>', $options);
201
+                    $this->writeText('<comment>' . $namespace['id'] . '</comment>', $options);
202 202
                 }
203 203
 
204 204
                 foreach ($namespace['commands'] as $name) {
Please login to merge, or discard this patch.
symfony/console/Symfony/Component/Console/Descriptor/XmlDescriptor.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -235,13 +235,13 @@
 block discarded – undo
235 235
         $dom = new \DOMDocument('1.0', 'UTF-8');
236 236
 
237 237
         $dom->appendChild($objectXML = $dom->createElement('option'));
238
-        $objectXML->setAttribute('name', '--'.$option->getName());
238
+        $objectXML->setAttribute('name', '--' . $option->getName());
239 239
         $pos = strpos($option->getShortcut(), '|');
240 240
         if (false !== $pos) {
241
-            $objectXML->setAttribute('shortcut', '-'.substr($option->getShortcut(), 0, $pos));
242
-            $objectXML->setAttribute('shortcuts', '-'.implode('|-', explode('|', $option->getShortcut())));
241
+            $objectXML->setAttribute('shortcut', '-' . substr($option->getShortcut(), 0, $pos));
242
+            $objectXML->setAttribute('shortcuts', '-' . implode('|-', explode('|', $option->getShortcut())));
243 243
         } else {
244
-            $objectXML->setAttribute('shortcut', $option->getShortcut() ? '-'.$option->getShortcut() : '');
244
+            $objectXML->setAttribute('shortcut', $option->getShortcut() ? '-' . $option->getShortcut() : '');
245 245
         }
246 246
         $objectXML->setAttribute('accept_value', $option->acceptValue() ? 1 : 0);
247 247
         $objectXML->setAttribute('is_value_required', $option->isValueRequired() ? 1 : 0);
Please login to merge, or discard this patch.
vendor/symfony/console/Symfony/Component/Console/Helper/FormatterHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
 
60 60
         $messages = $large ? array(str_repeat(' ', $len)) : array();
61 61
         for ($i = 0; isset($lines[$i]); ++$i) {
62
-            $messages[] = $lines[$i].str_repeat(' ', $len - $this->strlen($lines[$i]));
62
+            $messages[] = $lines[$i] . str_repeat(' ', $len - $this->strlen($lines[$i]));
63 63
         }
64 64
         if ($large) {
65 65
             $messages[] = str_repeat(' ', $len);
Please login to merge, or discard this patch.
vendor/symfony/console/Symfony/Component/Console/Helper/Helper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
                 return $format[1];
86 86
             }
87 87
 
88
-            return ceil($secs / $format[2]).' '.$format[1];
88
+            return ceil($secs / $format[2]) . ' ' . $format[1];
89 89
         }
90 90
     }
91 91
 
Please login to merge, or discard this patch.
vendor/symfony/console/Symfony/Component/Console/Helper/ProgressHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -416,7 +416,7 @@
 block discarded – undo
416 416
                     $text = $format[1];
417 417
                     break;
418 418
                 } else {
419
-                    $text = ceil($secs / $format[2]).' '.$format[1];
419
+                    $text = ceil($secs / $format[2]) . ' ' . $format[1];
420 420
                     break;
421 421
                 }
422 422
             }
Please login to merge, or discard this patch.
vendor/symfony/console/Symfony/Component/Console/Helper/QuestionHelper.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 
52 52
         $that = $this;
53 53
 
54
-        $interviewer = function () use ($output, $question, $that) {
54
+        $interviewer = function() use ($output, $question, $that) {
55 55
             return $that->doAsk($output, $question);
56 56
         };
57 57
 
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
                 // Save cursor position
267 267
                 $output->write("\0337");
268 268
                 // Write highlighted text
269
-                $output->write('<hl>'.substr($matches[$ofs], $i).'</hl>');
269
+                $output->write('<hl>' . substr($matches[$ofs], $i) . '</hl>');
270 270
                 // Restore cursor position
271 271
                 $output->write("\0338");
272 272
             }
@@ -290,11 +290,11 @@  discard block
 block discarded – undo
290 290
     private function getHiddenResponse(OutputInterface $output, $inputStream)
291 291
     {
292 292
         if ('\\' === DIRECTORY_SEPARATOR) {
293
-            $exe = __DIR__.'/../Resources/bin/hiddeninput.exe';
293
+            $exe = __DIR__ . '/../Resources/bin/hiddeninput.exe';
294 294
 
295 295
             // handle code running from a phar
296 296
             if ('phar:' === substr(__FILE__, 0, 5)) {
297
-                $tmpExe = sys_get_temp_dir().'/hiddeninput.exe';
297
+                $tmpExe = sys_get_temp_dir() . '/hiddeninput.exe';
298 298
                 copy($exe, $tmpExe);
299 299
                 $exe = $tmpExe;
300 300
             }
@@ -358,7 +358,7 @@  discard block
 block discarded – undo
358 358
                 if (null !== $this->getHelperSet() && $this->getHelperSet()->has('formatter')) {
359 359
                     $message = $this->getHelperSet()->get('formatter')->formatBlock($error->getMessage(), 'error');
360 360
                 } else {
361
-                    $message = '<error>'.$error->getMessage().'</error>';
361
+                    $message = '<error>' . $error->getMessage() . '</error>';
362 362
                 }
363 363
 
364 364
                 $output->writeln($message);
Please login to merge, or discard this patch.
vendor/symfony/console/Symfony/Component/Console/Helper/Table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -258,7 +258,7 @@
 block discarded – undo
258 258
 
259 259
         $markup = $this->style->getCrossingChar();
260 260
         for ($column = 0; $column < $count; $column++) {
261
-            $markup .= str_repeat($this->style->getHorizontalBorderChar(), $this->getColumnWidth($column)).$this->style->getCrossingChar();
261
+            $markup .= str_repeat($this->style->getHorizontalBorderChar(), $this->getColumnWidth($column)) . $this->style->getCrossingChar();
262 262
         }
263 263
 
264 264
         $this->output->writeln(sprintf($this->style->getBorderFormat(), $markup));
Please login to merge, or discard this patch.