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
Pull Request — master (#80)
by Vincent
02:18
created
config/application.php 1 patch
Spacing   +7 added lines, -7 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', 'ENV_DEVELOPMENT']);
21 21
 }
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
  */
27 27
 define('WP_ENV', env('WP_ENV') ?: 'development');
28 28
 
29
-$env_config = __DIR__ . '/environments/' . WP_ENV . '.php';
29
+$env_config = __DIR__.'/environments/'.WP_ENV.'.php';
30 30
 
31 31
 if (file_exists($env_config)) {
32 32
     require_once $env_config;
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         $WP_HOME = $envs['development'];
57 57
 }
58 58
 
59
-$WP_SITEURL = $WP_HOME . '/wp';
59
+$WP_SITEURL = $WP_HOME.'/wp';
60 60
 
61 61
 define('WP_HOME', $WP_HOME);
62 62
 define('WP_SITEURL', $WP_SITEURL);
@@ -65,8 +65,8 @@  discard block
 block discarded – undo
65 65
  * Custom Content Directory
66 66
  */
67 67
 define('CONTENT_DIR', '/app');
68
-define('WP_CONTENT_DIR', $webroot_dir . CONTENT_DIR);
69
-define('WP_CONTENT_URL', WP_HOME . CONTENT_DIR);
68
+define('WP_CONTENT_DIR', $webroot_dir.CONTENT_DIR);
69
+define('WP_CONTENT_URL', WP_HOME.CONTENT_DIR);
70 70
 
71 71
 /**
72 72
  * DB settings
@@ -102,5 +102,5 @@  discard block
 block discarded – undo
102 102
  * Bootstrap WordPress
103 103
  */
104 104
 if (!defined('ABSPATH')) {
105
-    define('ABSPATH', $webroot_dir . '/wp/');
105
+    define('ABSPATH', $webroot_dir.'/wp/');
106 106
 }
107 107
\ No newline at end of file
Please login to merge, or discard this patch.