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 ( 407d94...6d9e9e )
by Anton
11:58 queued 08:17
created
recipe/provision/website.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -4,23 +4,23 @@  discard block
 block discarded – undo
4 4
 
5 5
 namespace Deployer;
6 6
 
7
-set('domain', function () {
7
+set('domain', function() {
8 8
     return ask(' Domain: ', get('hostname'));
9 9
 });
10 10
 
11
-set('public_path', function () {
11
+set('public_path', function() {
12 12
     return ask(' Public path: ', 'public');
13 13
 });
14 14
 
15 15
 desc('Configures a server');
16
-task('provision:server', function () {
16
+task('provision:server', function() {
17 17
     run('usermod -a -G www-data caddy');
18 18
     run("mkdir -p /var/deployer");
19 19
     upload(__DIR__ . '/404.html', '/var/deployer/404.html');
20 20
 })->oncePerNode();
21 21
 
22 22
 desc('Provision website');
23
-task('provision:website', function () {
23
+task('provision:website', function() {
24 24
     $restoreBecome = become('deployer');
25 25
 
26 26
     run("[ -d {{deploy_path}} ] || mkdir -p {{deploy_path}}");
@@ -64,11 +64,11 @@  discard block
 block discarded – undo
64 64
 })->limit(1);
65 65
 
66 66
 desc('Shows access logs');
67
-task('logs:access', function () {
67
+task('logs:access', function() {
68 68
     run('tail -f {{deploy_path}}/log/access.log');
69 69
 })->verbose();
70 70
 
71 71
 desc('Shows caddy syslog');
72
-task('logs:caddy', function () {
72
+task('logs:caddy', function() {
73 73
     run('sudo journalctl -u caddy -f');
74 74
 })->verbose();
Please login to merge, or discard this patch.