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 ( 725730...306f93 )
by Anton
03:19
created
recipe/laravel.php 1 patch
Spacing   +2 added lines, -2 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)
Please login to merge, or discard this patch.