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 ( 6a3289...514d99 )
by Anton
02:27
created
recipe/deploy/check_remote.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,14 +13,14 @@  discard block
 block discarded – undo
13 13
 // Cancel deployment if there would be no change to the codebase.
14 14
 // This avoids unnecessary releases if the latest commit has already been deployed.
15 15
 desc('Check remote head');
16
-task('deploy:check_remote', function () {
16
+task('deploy:check_remote', function() {
17 17
     $repository = get('repository');
18 18
     if (empty($repository)) {
19 19
         throw new Exception("You need to specify a repository.");
20 20
     }
21 21
 
22 22
     // Skip if there is no current deployment to compare
23
-    if (! test('[ -d {{deploy_path}}/current/.git ]')) {
23
+    if (!test('[ -d {{deploy_path}}/current/.git ]')) {
24 24
         return;
25 25
     }
26 26
 
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
         }
41 41
 
42 42
         $remoteLs = null;
43
-        on(localhost(), function () use (& $remoteLs, $opt, $repository, $ref) {
43
+        on(localhost(), function() use (& $remoteLs, $opt, $repository, $ref) {
44 44
             $getRemoteRevisionCmd = sprintf("%s ls-remote $opt $repository $ref", get('bin/git'));
45 45
             $remoteLs = run($getRemoteRevisionCmd);
46 46
         });
Please login to merge, or discard this patch.