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 ( 4b7e13...66a168 )
by Anton
09:24
created
recipe/laravel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 ]);
23 23
 set('log_files', 'storage/logs/*.log');
24 24
 set('bin/artisan', '{{release_or_current_path}}/artisan');
25
-set('laravel_version', function () {
25
+set('laravel_version', function() {
26 26
     $result = run("{{bin/php}} {{bin/artisan}} --version");
27 27
     preg_match_all('/(\d+\.?)+/', $result, $matches);
28 28
     return $matches[0][0] ?? 5.5;
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
  */
46 46
 function artisan($command, $options = [])
47 47
 {
48
-    return function () use ($command, $options) {
48
+    return function() use ($command, $options) {
49 49
 
50 50
         // Ensure the artisan command is available on the current version.
51 51
         $versionTooEarly = array_key_exists('min', $options)
Please login to merge, or discard this patch.