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 ( 74c530...9db20b )
by Anton
09:59 queued 06:18
created
recipe/deploy/env.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 namespace Deployer;
4 4
 
5 5
 desc('Configure .env file');
6
-task('deploy:env', function () {
6
+task('deploy:env', function() {
7 7
     cd('{{release_path}}');
8 8
     if (test('[ -f .env.example ]')) {
9 9
         run('cp .env.example .env');
Please login to merge, or discard this patch.
recipe/laravel.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     'storage/logs',
22 22
 ]);
23 23
 set('log_files', 'storage/logs/*.log');
24
-set('laravel_version', function () {
24
+set('laravel_version', function() {
25 25
     $result = run('{{bin/php}} {{release_or_current_path}}/artisan --version');
26 26
     preg_match_all('/(\d+\.?)+/', $result, $matches);
27 27
     return $matches[0][0] ?? 5.5;
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
  */
45 45
 function artisan($command, $options = [])
46 46
 {
47
-    return function () use ($command, $options) {
47
+    return function() use ($command, $options) {
48 48
 
49 49
         // Ensure the artisan command is available on the current version.
50 50
         $versionTooEarly = array_key_exists('min', $options)
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 task('artisan:key:generate', artisan('key:generate'));
103 103
 
104 104
 desc('Generates the application key for new deployments');
105
-task('artisan:create_key', function () {
105
+task('artisan:create_key', function() {
106 106
     if (has('new_deployment')) {
107 107
         invoke('artisan:key:generate');
108 108
     }
Please login to merge, or discard this patch.