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.
Completed
Push — master ( 18cd25...377ed0 )
by Vincent
02:59
created
config/application.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
 $root_dir = dirname(__DIR__);
5 5
 
6 6
 /** @var string Document Root */
7
-$webroot_dir = $root_dir . '/web';
7
+$webroot_dir = $root_dir.'/web';
8 8
 
9 9
 /**
10 10
  * Expose global env() function from oscarotero/env
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
  * Use Dotenv to set required environment variables and load .env file in root
16 16
  */
17 17
 $dotenv = new Dotenv\Dotenv($root_dir);
18
-if (file_exists($root_dir . '/.env')) {
18
+if (file_exists($root_dir.'/.env')) {
19 19
     $dotenv->load();
20 20
     $dotenv->required(['DB_NAME', 'DB_USER', 'DB_PASSWORD', 'WP_HOME', 'WP_SITEURL']);
21 21
 }
Please login to merge, or discard this patch.