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 ( 5f69a2...8938eb )
by Anton
02:47
created
contrib/crontab.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -25,12 +25,12 @@  discard block
 block discarded – undo
25 25
 namespace Deployer;
26 26
 
27 27
 // Get path to bin
28
-set('bin/crontab', function () {
28
+set('bin/crontab', function() {
29 29
     return which('crontab');
30 30
 });
31 31
 
32 32
 // Set the identifier used in the crontab, application name by default
33
-set('crontab:identifier', function () {
33
+set('crontab:identifier', function() {
34 34
     return get('application', 'application');
35 35
 });
36 36
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 set('crontab:use_sudo', false);
39 39
 
40 40
 desc('Sync crontab jobs');
41
-task('crontab:sync', function () {
41
+task('crontab:sync', function() {
42 42
     $cronJobsLocal = array_map(
43 43
         fn($job) => parse($job),
44 44
         get('crontab:jobs', []),
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 });
83 83
 
84 84
 desc('Remove crontab jobs');
85
-task('crontab:remove', function () {
85
+task('crontab:remove', function() {
86 86
     $cronJobsLocal = array_map(
87 87
         fn($job) => parse($job),
88 88
         get('crontab:jobs', []),
Please login to merge, or discard this patch.