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.
Passed
Push — master ( 9abe63...85b4d8 )
by Anton
02:44
created
tests/legacy/recipe/update_code.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,6 +4,6 @@
 block discarded – undo
4 4
 
5 5
 require __DIR__ . '/deploy.php';
6 6
 
7
-task('deploy:update_code', function () {
7
+task('deploy:update_code', function() {
8 8
     upload(__FIXTURES__ . '/project/', '{{release_path}}');
9 9
 });
Please login to merge, or discard this patch.
tests/legacy/recipe/once.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,6 +5,6 @@
 block discarded – undo
5 5
 localhost('prod');
6 6
 localhost('beta');
7 7
 
8
-task('test_once', function () {
8
+task('test_once', function() {
9 9
     writeln('SHOULD BE ONCE');
10 10
 })->once();
Please login to merge, or discard this patch.
tests/legacy/recipe/once_per_node.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,6 @@
 block discarded – undo
11 11
 localhost('group_b_2')
12 12
     ->setLabels(['node' => 'anna']);
13 13
 
14
-task('test_once_per_node', function () {
14
+task('test_once_per_node', function() {
15 15
     writeln('alias: {{alias}} hostname: {{hostname}}');
16 16
 })->oncePerNode();
Please login to merge, or discard this patch.
tests/legacy/recipe/named_arguments.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,19 +4,19 @@
 block discarded – undo
4 4
 
5 5
 localhost();
6 6
 
7
-task('named_arguments', function () {
7
+task('named_arguments', function() {
8 8
     run('echo "Hello, $name!"', env: ['name' => 'world']);
9 9
 });
10 10
 
11
-task('options', function () {
11
+task('options', function() {
12 12
     run('echo "Hello, $name!"', ['env' => ['name' => 'Anton']]);
13 13
 });
14 14
 
15
-task('options_with_named_arguments', function () {
15
+task('options_with_named_arguments', function() {
16 16
     // The `options:` arg has higher priority than named arguments.
17 17
     run('echo "Hello, $name!"', ['env' => ['name' => 'override']], env: ['name' => 'world']);
18 18
 });
19 19
 
20
-task('run_locally_named_arguments', function () {
20
+task('run_locally_named_arguments', function() {
21 21
     runLocally('echo "Hello, $name!"', env: ['name' => 'world']);
22 22
 });
Please login to merge, or discard this patch.
src/Component/PharUpdate/Manifest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
 
121 121
         usort(
122 122
             $updates,
123
-            function (Update $a, Update $b) {
123
+            function(Update $a, Update $b) {
124 124
                 return Comparator::isGreaterThan(
125 125
                     $a->getVersion(),
126 126
                     $b->getVersion(),
Please login to merge, or discard this patch.
src/Command/BlackjackCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         $dealersHand = [];
81 81
         $playersHand = [];
82 82
         shuffle($deck);
83
-        $deal = function () use (&$deck, &$graveyard) {
83
+        $deal = function() use (&$deck, &$graveyard) {
84 84
             if (count($deck) == 0) {
85 85
                 shuffle($graveyard);
86 86
                 $deck = $graveyard;
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
         }
288 288
         $variants = [$value];
289 289
         while ($aces-- > 0) {
290
-            $variants = array_flatten(array_map(function ($v) {
290
+            $variants = array_flatten(array_map(function($v) {
291 291
                 return [$v + 1, $v + 11];
292 292
             }, $variants));
293 293
         }
Please login to merge, or discard this patch.
src/Support/helpers.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 function array_flatten(array $array)
20 20
 {
21 21
     $flatten = [];
22
-    array_walk_recursive($array, function ($value) use (&$flatten) {
22
+    array_walk_recursive($array, function($value) use (&$flatten) {
23 23
         $flatten[] = $value;
24 24
     });
25 25
     return $flatten;
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 function env_stringify(array $array): string
89 89
 {
90 90
     return implode(' ', array_map(
91
-        function ($key, $value) {
91
+        function($key, $value) {
92 92
             return sprintf("%s=%s", $key, escapeshellarg((string) $value));
93 93
         },
94 94
         array_keys($array),
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
     }
180 180
 
181 181
     if (getenv('COLORTERM') === 'truecolor') {
182
-        $hsv = function ($h, $s, $v) {
182
+        $hsv = function($h, $s, $v) {
183 183
             $r = $g = $b = $i = $f = $p = $q = $t = 0;
184 184
             $i = floor($h * 6);
185 185
             $f = $h * 6 - $i;
Please login to merge, or discard this patch.
src/Selector/Selector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         $labels = $host->get('labels', []);
54 54
         $labels['alias'] = $host->getAlias();
55 55
         $labels['true'] = 'true';
56
-        $isTrue = function ($value) {
56
+        $isTrue = function($value) {
57 57
             return $value;
58 58
         };
59 59
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      */
75 75
     private static function compare(string $op, $a, ?string $b): bool
76 76
     {
77
-        $matchFunction = function ($a, ?string $b) {
77
+        $matchFunction = function($a, ?string $b) {
78 78
             foreach ((array) $a as $item) {
79 79
                 if ($item === $b) {
80 80
                     return true;
Please login to merge, or discard this patch.
src/Documentation/DocGen.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     {
52 52
         foreach ($this->recipes as $recipe) {
53 53
             // $find will try to return DocConfig for a given config $name.
54
-            $findConfig = function (string $name) use ($recipe): ?DocConfig {
54
+            $findConfig = function(string $name) use ($recipe): ?DocConfig {
55 55
                 if (array_key_exists($name, $recipe->config)) {
56 56
                     return $recipe->config[$name];
57 57
                 }
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
                 }
70 70
                 return null;
71 71
             };
72
-            $findConfigOverride = function (DocRecipe $recipe, string $name) use (&$findConfigOverride): ?DocConfig {
72
+            $findConfigOverride = function(DocRecipe $recipe, string $name) use (&$findConfigOverride): ?DocConfig {
73 73
                 foreach ($recipe->require as $r) {
74 74
                     if (array_key_exists($r, $this->recipes)) {
75 75
                         if (array_key_exists($name, $this->recipes[$r]->config)) {
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
                 return null;
86 86
             };
87 87
             // Replace all {{name}} with link to correct config declaration.
88
-            $replaceLinks = function (string $comment) use ($findConfig): string {
88
+            $replaceLinks = function(string $comment) use ($findConfig): string {
89 89
                 $output = '';
90 90
                 $code = false;
91 91
                 foreach (explode("\n", $comment) as $i => $line) {
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
                         $output .= "\n";
98 98
                         continue;
99 99
                     }
100
-                    $output .= preg_replace_callback('#(\{\{(?<name>[\w_:\-/]+)\}\})#', function ($m) use ($findConfig) {
100
+                    $output .= preg_replace_callback('#(\{\{(?<name>[\w_:\-/]+)\}\})#', function($m) use ($findConfig) {
101 101
                         $name = $m['name'];
102 102
                         $config = $findConfig($name);
103 103
                         if ($config !== null) {
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
                 }
112 112
                 return $output;
113 113
             };
114
-            $findTask = function (string $name, bool $searchOtherRecipes = true) use ($recipe): ?DocTask {
114
+            $findTask = function(string $name, bool $searchOtherRecipes = true) use ($recipe): ?DocTask {
115 115
                 if (array_key_exists($name, $recipe->tasks)) {
116 116
                     return $recipe->tasks[$name];
117 117
                 }
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 
171 171
                     MARKDOWN;
172 172
 
173
-                $map = function (DocTask $task, $ident = '') use (&$map, $findTask, &$intro): void {
173
+                $map = function(DocTask $task, $ident = '') use (&$map, $findTask, &$intro): void {
174 174
                     foreach ($task->group as $taskName) {
175 175
                         $t = $findTask($taskName);
176 176
                         if ($t !== null) {
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
 
357 357
 function indent(string $text): string
358 358
 {
359
-    return implode("\n", array_map(function ($line) {
359
+    return implode("\n", array_map(function($line) {
360 360
         return "  " . $line;
361 361
     }, explode("\n", $text)));
362 362
 }
Please login to merge, or discard this patch.