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 ( ee651b...67f1c0 )
by Anton
03:43 queued 12s
created
src/Component/ProcessRunner/ProcessRunner.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
         $this->pop->command($host, 'run', $command);
53 53
 
54 54
         $terminalOutput = $this->pop->callback($host, $config['real_time_output']);
55
-        $callback = function ($type, $buffer) use ($host, $terminalOutput) {
55
+        $callback = function($type, $buffer) use ($host, $terminalOutput) {
56 56
             $this->logger->printBuffer($host, $type, $buffer);
57 57
             $terminalOutput($type, $buffer);
58 58
         };
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.
contrib/newrelic.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,22 +20,22 @@
 block discarded – undo
20 20
 
21 21
 use Deployer\Utility\Httpie;
22 22
 
23
-set('newrelic_app_id', function () {
23
+set('newrelic_app_id', function() {
24 24
     throw new \Exception('Please, configure "newrelic_app_id" parameter.');
25 25
 });
26 26
 
27
-set('newrelic_description', function () {
27
+set('newrelic_description', function() {
28 28
     return runLocally('git log -n 1 --format="%an: %s" | tr \'"\' "\'"');
29 29
 });
30 30
 
31
-set('newrelic_revision', function () {
31
+set('newrelic_revision', function() {
32 32
     return runLocally('git log -n 1 --format="%h"');
33 33
 });
34 34
 
35 35
 set('newrelic_endpoint', 'api.newrelic.com');
36 36
 
37 37
 desc('Notifies New Relic of deployment');
38
-task('newrelic:notify', function () {
38
+task('newrelic:notify', function() {
39 39
     if (($appId = get('newrelic_app_id')) && ($apiKey = get('newrelic_api_key')) && ($endpoint = get('newrelic_endpoint'))) {
40 40
         $data = [
41 41
             'user' => get('user'),
Please login to merge, or discard this patch.
contrib/slack.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 set('slack_channel', false);
70 70
 
71 71
 // Title of project
72
-set('slack_title', function () {
72
+set('slack_title', function() {
73 73
     return get('application', 'Project');
74 74
 });
75 75
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 }
97 97
 
98 98
 desc('Notifies Slack');
99
-task('slack:notify', function () {
99
+task('slack:notify', function() {
100 100
     if (!get('slack_webhook', false)) {
101 101
         warning('No Slack webhook configured');
102 102
         return;
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
     ->hidden();
117 117
 
118 118
 desc('Notifies Slack about deploy finish');
119
-task('slack:notify:success', function () {
119
+task('slack:notify:success', function() {
120 120
     if (!get('slack_webhook', false)) {
121 121
         warning('No Slack webhook configured');
122 122
         return;
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
     ->hidden();
138 138
 
139 139
 desc('Notifies Slack about deploy failure');
140
-task('slack:notify:failure', function () {
140
+task('slack:notify:failure', function() {
141 141
     if (!get('slack_webhook', false)) {
142 142
         warning('No Slack webhook configured');
143 143
         return;
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
     ->hidden();
158 158
 
159 159
 desc('Notifies Slack about rollback');
160
-task('slack:notify:rollback', function () {
160
+task('slack:notify:rollback', function() {
161 161
     if (!get('slack_webhook', false)) {
162 162
         warning('No Slack webhook configured');
163 163
         return;
Please login to merge, or discard this patch.
contrib/php-fpm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,14 +31,14 @@
 block discarded – undo
31 31
 namespace Deployer;
32 32
 
33 33
 // Automatically detects by using {{bin/php}}.
34
-set('php_fpm_version', function () {
34
+set('php_fpm_version', function() {
35 35
     return run('{{bin/php}} -r "printf(\'%d.%d\', PHP_MAJOR_VERSION, PHP_MINOR_VERSION);"');
36 36
 });
37 37
 
38 38
 set('php_fpm_service', 'php{{php_fpm_version}}-fpm');
39 39
 
40 40
 desc('Reloads the php-fpm service');
41
-task('php-fpm:reload', function () {
41
+task('php-fpm:reload', function() {
42 42
     warning('Avoid reloading php-fpm [ï.at/avoid-php-fpm-reloading]');
43 43
     run('sudo systemctl reload {{php_fpm_service}}');
44 44
 });
Please login to merge, or discard this patch.
contrib/bugsnag.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 use Deployer\Utility\Httpie;
21 21
 
22 22
 desc('Notifies Bugsnag of deployment');
23
-task('bugsnag:notify', function () {
23
+task('bugsnag:notify', function() {
24 24
     $data = [
25 25
         'apiKey'       => get('bugsnag_api_key'),
26 26
         'releaseStage' => get('target'),
Please login to merge, or discard this patch.
contrib/ms-teams.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 use Deployer\Utility\Httpie;
76 76
 
77 77
 // Title of project
78
-set('teams_title', function () {
78
+set('teams_title', function() {
79 79
     return get('application', 'Project');
80 80
 });
81 81
 
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 set('teams_failure_color', '#ff0909');
91 91
 
92 92
 desc('Notifies Teams');
93
-task('teams:notify', function () {
93
+task('teams:notify', function() {
94 94
     if (!get('teams_webhook', false)) {
95 95
         warning('No MS Teams webhook configured');
96 96
         return;
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
     ->hidden();
106 106
 
107 107
 desc('Notifies Teams about deploy finish');
108
-task('teams:notify:success', function () {
108
+task('teams:notify:success', function() {
109 109
     if (!get('teams_webhook', false)) {
110 110
         warning('No MS Teams webhook configured');
111 111
         return;
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     ->hidden();
121 121
 
122 122
 desc('Notifies Teams about deploy failure');
123
-task('teams:notify:failure', function () {
123
+task('teams:notify:failure', function() {
124 124
     if (!get('teams_webhook', false)) {
125 125
         warning('No MS Teams webhook configured');
126 126
         return;
Please login to merge, or discard this patch.