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 ( 64a177...94cc06 )
by
unknown
05:19 queued 02:35
created
recipe/laravel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     'storage/logs',
22 22
 ]);
23 23
 set('log_files', 'storage/logs/*.log');
24
-set('laravel_version', function () {
24
+set('laravel_version', function() {
25 25
     $result = run('{{bin/php}} {{release_or_current_path}}/artisan --version');
26 26
     preg_match_all('/(\d+\.?)+/', $result, $matches);
27 27
     return $matches[0][0] ?? 5.5;
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
  */
45 45
 function artisan($command, $options = [])
46 46
 {
47
-    return function () use ($command, $options) {
47
+    return function() use ($command, $options) {
48 48
 
49 49
         // Ensure the artisan command is available on the current version.
50 50
         $versionTooEarly = array_key_exists('min', $options)
Please login to merge, or discard this patch.
src/Utility/Rsync.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
         }
74 74
         $command = array_values(array_filter(
75 75
             array_merge(['rsync', $flags], $options, $source, [$destination]),
76
-            function (string $value) {
76
+            function(string $value) {
77 77
                 return $value !== '';
78 78
             },
79 79
         ));
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 
97 97
         $fullOutput = '';
98 98
 
99
-        $callback = function ($type, $buffer) use ($host, $progressBar, &$fullOutput) {
99
+        $callback = function($type, $buffer) use ($host, $progressBar, &$fullOutput) {
100 100
             $fullOutput .= $buffer;
101 101
             if ($progressBar) {
102 102
                 foreach (explode("\n", $buffer) as $line) {
Please login to merge, or discard this patch.
src/Logger/Logger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 
32 32
     public function callback(Host $host): \Closure
33 33
     {
34
-        return function ($type, $buffer) use ($host) {
34
+        return function($type, $buffer) use ($host) {
35 35
             $this->printBuffer($host, $type, $buffer);
36 36
         };
37 37
     }
Please login to merge, or discard this patch.
src/Command/RunCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
         $hosts = $this->selectHosts($input, $output);
63 63
         $this->applyOverrides($hosts, $input->getOption('option'));
64 64
 
65
-        $task = new Task($command, function () use ($input, $command) {
65
+        $task = new Task($command, function() use ($input, $command) {
66 66
             if (has('current_path')) {
67 67
                 $path = get('current_path');
68 68
                 if (test("[ -d $path ]")) {
Please login to merge, or discard this patch.
src/Command/SelectCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
                 $question->setErrorMessage('There is no "%s" host.');
65 65
                 $answer = $helper->ask($input, $output, $question);
66 66
                 $answer = array_unique($answer);
67
-                $hosts = $this->deployer->hosts->select(function (Host $host) use ($answer) {
67
+                $hosts = $this->deployer->hosts->select(function(Host $host) use ($answer) {
68 68
                     return in_array($host->getAlias(), $answer, true);
69 69
                 });
70 70
             }
Please login to merge, or discard this patch.
src/Component/Pimple/Container.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -263,7 +263,7 @@
 block discarded – undo
263 263
 
264 264
         $factory = $this->values[$id];
265 265
 
266
-        $extended = function ($c) use ($callable, $factory) {
266
+        $extended = function($c) use ($callable, $factory) {
267 267
             return $callable($factory($c), $c);
268 268
         };
269 269
 
Please login to merge, or discard this patch.
src/Documentation/ApiGen.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
                         if (empty($params)) {
55 55
                             $params = "| Argument | Type | Comment |\n|---|---|---|\n";
56 56
                         }
57
-                        $type = implode(' or ', array_map(function ($t) {
57
+                        $type = implode(' or ', array_map(function($t) {
58 58
                             $t = trim($t, ' ');
59 59
                             return "`$t`";
60 60
                         }, explode('|', $matches['type'])));
Please login to merge, or discard this patch.
contrib/workplace.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 set('workplace_edit_post', false);
76 76
 
77 77
 desc('Notifies Workplace');
78
-task('workplace:notify', function () {
78
+task('workplace:notify', function() {
79 79
     if (!get('workplace_webhook', false)) {
80 80
         return;
81 81
     }
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     ->hidden();
100 100
 
101 101
 desc('Notifies Workplace about deploy finish');
102
-task('workplace:notify:success', function () {
102
+task('workplace:notify:success', function() {
103 103
     if (!get('workplace_webhook', false)) {
104 104
         return;
105 105
     }
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     ->hidden();
111 111
 
112 112
 desc('Notifies Workplace about deploy failure');
113
-task('workplace:notify:failure', function () {
113
+task('workplace:notify:failure', function() {
114 114
     if (!get('workplace_webhook', false)) {
115 115
         return;
116 116
     }
Please login to merge, or discard this patch.
contrib/raygun.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 use Deployer\Utility\Httpie;
25 25
 
26 26
 desc('Notifies Raygun of deployment');
27
-task('raygun:notify', function () {
27
+task('raygun:notify', function() {
28 28
     $data = [
29 29
         'apiKey'       => get('raygun_api_key'),
30 30
         'version' => get('raygun_version'),
Please login to merge, or discard this patch.