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 ( 5cefd1...492078 )
by Anton
04:08
created
recipe/deploy/info.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 // Defines "what" text for the 'deploy:info' task.
6 6
 // Uses one of the following sources:
7 7
 // 1. Repository name
8
-set('what', function () {
8
+set('what', function() {
9 9
     $repo = get('repository');
10 10
     if (!empty($repo)) {
11 11
         return preg_replace('/\.git$/', '', basename($repo));
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 // Uses one of the following sources:
18 18
 // 1. Host's stage label
19 19
 // 2. Host's alias
20
-set('where', function () {
20
+set('where', function() {
21 21
     $labels = get('labels');
22 22
     if (isset($labels['stage'])) {
23 23
         return $labels['stage'];
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 });
27 27
 
28 28
 desc('Displays info about deployment');
29
-task('deploy:info', function () {
29
+task('deploy:info', function() {
30 30
     $releaseName = test('[ -d {{deploy_path}}/.dep ]') ? get('release_name') : 1;
31 31
 
32 32
     info("deploying <fg=green;options=bold>{{what}}</> to <fg=magenta;options=bold>{{where}}</> (release <fg=magenta;options=bold>{$releaseName}</>)");
Please login to merge, or discard this patch.
contrib/rocketchat.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
 use Deployer\Utility\Httpie;
64 64
 
65
-set('rockchat_title', function () {
65
+set('rockchat_title', function() {
66 66
     return get('application', 'Project');
67 67
 });
68 68
 
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 set('rocketchat_failure_text', 'Deploy to *{{where}}* failed');
84 84
 
85 85
 desc('Notifies RocketChat');
86
-task('rocketchat:notify', function () {
86
+task('rocketchat:notify', function() {
87 87
     if (null === get('rocketchat_webhook')) {
88 88
         return;
89 89
     }
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 });
114 114
 
115 115
 desc('Notifies RocketChat about deploy finish');
116
-task('rocketchat:notify:success', function () {
116
+task('rocketchat:notify:success', function() {
117 117
     if (null === get('rocketchat_webhook')) {
118 118
         return;
119 119
     }
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
 });
144 144
 
145 145
 desc('Notifies RocketChat about deploy failure');
146
-task('rocketchat:notify:failure', function () {
146
+task('rocketchat:notify:failure', function() {
147 147
     if (null === get('rocketchat_webhook')) {
148 148
         return;
149 149
     }
Please login to merge, or discard this patch.
contrib/rollbar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 set('rollbar_comment', '_{{user}}_ deploying `{{what}}` to *{{where}}*');
28 28
 
29 29
 desc('Notifies Rollbar of deployment');
30
-task('rollbar:notify', function () {
30
+task('rollbar:notify', function() {
31 31
     if (!get('rollbar_token', false)) {
32 32
         return;
33 33
     }
Please login to merge, or discard this patch.
contrib/discord.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -51,22 +51,22 @@  discard block
 block discarded – undo
51 51
 use Deployer\Task\Context;
52 52
 use Deployer\Utility\Httpie;
53 53
 
54
-set('discord_webhook', function () {
54
+set('discord_webhook', function() {
55 55
     return 'https://discordapp.com/api/webhooks/{{discord_channel}}/{{discord_token}}/slack';
56 56
 });
57 57
 
58 58
 // Deploy messages
59
-set('discord_notify_text', function () {
59
+set('discord_notify_text', function() {
60 60
     return [
61 61
         'text' => parse(':information_source: **{{user}}** is deploying branch `{{what}}` to _{{where}}_'),
62 62
     ];
63 63
 });
64
-set('discord_success_text', function () {
64
+set('discord_success_text', function() {
65 65
     return [
66 66
         'text' => parse(':white_check_mark: Branch `{{what}}` deployed to _{{where}}_ successfully'),
67 67
     ];
68 68
 });
69
-set('discord_failure_text', function () {
69
+set('discord_failure_text', function() {
70 70
     return [
71 71
         'text' => parse(':no_entry_sign: Branch `{{what}}` has failed to deploy to _{{where}}_'),
72 72
     ];
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 set('discord_message', 'discord_notify_text');
77 77
 
78 78
 // Helpers
79
-task('discord_send_message', function () {
79
+task('discord_send_message', function() {
80 80
     $message = get(get('discord_message'));
81 81
 
82 82
     Httpie::post(get('discord_webhook'))->jsonBody($message)->send();
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
 // Tasks
86 86
 desc('Tests messages');
87
-task('discord:test', function () {
87
+task('discord:test', function() {
88 88
     set('discord_message', 'discord_notify_text');
89 89
     invoke('discord_send_message');
90 90
     set('discord_message', 'discord_success_text');
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     ->once();
96 96
 
97 97
 desc('Notifies Discord');
98
-task('discord:notify', function () {
98
+task('discord:notify', function() {
99 99
     set('discord_message', 'discord_notify_text');
100 100
     invoke('discord_send_message');
101 101
 })
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     ->isHidden();
104 104
 
105 105
 desc('Notifies Discord about deploy finish');
106
-task('discord:notify:success', function () {
106
+task('discord:notify:success', function() {
107 107
     set('discord_message', 'discord_success_text');
108 108
     invoke('discord_send_message');
109 109
 })
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     ->isHidden();
112 112
 
113 113
 desc('Notifies Discord about deploy failure');
114
-task('discord:notify:failure', function () {
114
+task('discord:notify:failure', function() {
115 115
     set('discord_message', 'discord_failure_text');
116 116
     invoke('discord_send_message');
117 117
 })
Please login to merge, or discard this patch.
contrib/yammer.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 set('yammer_url', 'https://www.yammer.com/api/v1/messages.json');
56 56
 
57 57
 // Title of project
58
-set('yammer_title', function () {
58
+set('yammer_title', function() {
59 59
     return get('application', 'Project');
60 60
 });
61 61
 
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 set('yammer_failure_body', 'Deploy to <strong>{{where}}</strong> failed');
66 66
 
67 67
 desc('Notifies Yammer');
68
-task('yammer:notify', function () {
68
+task('yammer:notify', function() {
69 69
     $params = [
70 70
         'is_rich_text' => 'true',
71 71
         'message_type' => 'announcement',
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     ->hidden();
85 85
 
86 86
 desc('Notifies Yammer about deploy finish');
87
-task('yammer:notify:success', function () {
87
+task('yammer:notify:success', function() {
88 88
     $params = [
89 89
         'is_rich_text' => 'true',
90 90
         'message_type' => 'announcement',
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     ->hidden();
104 104
 
105 105
 desc('Notifies Yammer about deploy failure');
106
-task('yammer:notify:failure', function () {
106
+task('yammer:notify:failure', function() {
107 107
     $params = [
108 108
         'is_rich_text' => 'true',
109 109
         'message_type' => 'announcement',
Please login to merge, or discard this patch.
contrib/mattermost.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 set('mattermost_failure_text', 'Deploy to **{{where}}** failed {{mattermost_failure_emoji}}');
92 92
 
93 93
 desc('Notifies mattermost');
94
-task('mattermost:notify', function () {
94
+task('mattermost:notify', function() {
95 95
     if (null === get('mattermost_webhook')) {
96 96
         return;
97 97
     }
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 });
113 113
 
114 114
 desc('Notifies mattermost about deploy finish');
115
-task('mattermost:notify:success', function () {
115
+task('mattermost:notify:success', function() {
116 116
     if (null === get('mattermost_webhook')) {
117 117
         return;
118 118
     }
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 });
134 134
 
135 135
 desc('Notifies mattermost about deploy failure');
136
-task('mattermost:notify:failure', function () {
136
+task('mattermost:notify:failure', function() {
137 137
     if (null === get('mattermost_webhook')) {
138 138
         return;
139 139
     }
Please login to merge, or discard this patch.