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 ( 3b8b00...906caa )
by Vincent
07:26 queued 27s
created
web/wp-config.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,6 +4,6 @@
 block discarded – undo
4 4
  * This file is required in the root directory so WordPress can find it.
5 5
  * WP is hardcoded to look in its own directory or one directory up for wp-config.php.
6 6
  */
7
-require_once(dirname(__DIR__) . '/vendor/autoload.php');
8
-require_once(dirname(__DIR__) . '/config/application.php');
9
-require_once(ABSPATH . 'wp-settings.php');
10 7
\ No newline at end of file
8
+require_once(dirname(__DIR__).'/vendor/autoload.php');
9
+require_once(dirname(__DIR__).'/config/application.php');
10
+require_once(ABSPATH.'wp-settings.php');
11 11
\ No newline at end of file
Please login to merge, or discard this patch.
web/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1 1
 <?php
2 2
 /** WordPress view bootstrapper */
3 3
 define('WP_USE_THEMES', true);
4
-require(__DIR__ . '/wp/wp-blog-header.php');
5 4
\ No newline at end of file
5
+require(__DIR__.'/wp/wp-blog-header.php');
6 6
\ No newline at end of file
Please login to merge, or discard this patch.
config/environments/production.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,4 +6,4 @@
 block discarded – undo
6 6
 define('DISALLOW_FILE_EDIT', true);
7 7
 define('DISALLOW_FILE_MODS', true); // this disables all file modifications including updates and update notifications
8 8
 //auto updates
9
-define( 'WP_AUTO_UPDATE_CORE', true );
10 9
\ No newline at end of file
10
+define('WP_AUTO_UPDATE_CORE', true);
11 11
\ No newline at end of file
Please login to merge, or discard this patch.
web/app/themes/stash/inc/classes/ImageHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
      */
12 12
     function get($name)
13 13
     {
14
-        return get_template_directory_uri() . '/dist/images/' . $name;
14
+        return get_template_directory_uri().'/dist/images/'.$name;
15 15
     }
16 16
 
17 17
     /**
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
         if (strpos($imageUrl, '.svg') !== false) {
29 29
             return file_get_contents($imageUrl);
30 30
         } else {
31
-            return "<img src='" . $this->get($name) . "' />";
31
+            return "<img src='".$this->get($name)."' />";
32 32
         }
33 33
     }
34 34
 }
35 35
\ No newline at end of file
Please login to merge, or discard this patch.
web/app/themes/stash/functions.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@
 block discarded – undo
144 144
             wp_deregister_script('jquery');
145 145
         }
146 146
 
147
-         if ($vendorJsExists) {
147
+            if ($vendorJsExists) {
148 148
             wp_enqueue_script('stashVendorJs', get_template_directory_uri() . '/dist/js/vendor.js', [], filemtime(get_stylesheet_directory() . '/dist/js/vendor.js'), true);
149 149
             array_push($mainJsDependencies, 'stashVendorJs');
150 150
         }
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@  discard block
 block discarded – undo
6 6
 use Twig_Extension_StringLoader;
7 7
 
8 8
 if (!class_exists('Timber')) {
9
-    add_action('admin_notices', function () {
10
-        echo '<div class="error"><p>Timber not activated. Make sure you activate the plugin in <a href="' . esc_url(admin_url('plugins.php#timber')) . '">' . esc_url(admin_url('plugins.php')) . '</a></p></div>';
9
+    add_action('admin_notices', function() {
10
+        echo '<div class="error"><p>Timber not activated. Make sure you activate the plugin in <a href="'.esc_url(admin_url('plugins.php#timber')).'">'.esc_url(admin_url('plugins.php')).'</a></p></div>';
11 11
     });
12 12
 
13 13
     return;
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     function registerPostTypes()
66 66
     {
67
-        foreach (glob(__DIR__ . "/inc/post-types/*.php") as $filename) {
67
+        foreach (glob(__DIR__."/inc/post-types/*.php") as $filename) {
68 68
             include_once $filename;
69 69
         }
70 70
     }
@@ -132,12 +132,12 @@  discard block
 block discarded – undo
132 132
      */
133 133
     function themeAssets()
134 134
     {
135
-        $vendorJsExists = file_exists(get_template_directory() . '/dist/js/vendor.js');
136
-        $mainJsExists = file_exists(get_template_directory() . '/dist/js/main.js');
135
+        $vendorJsExists = file_exists(get_template_directory().'/dist/js/vendor.js');
136
+        $mainJsExists = file_exists(get_template_directory().'/dist/js/main.js');
137 137
         $mainJsDependencies = [];
138 138
 
139
-        $mainCssExists = file_exists(get_template_directory() . '/dist/css/main.css');
140
-        $vendorCssExists = file_exists(get_template_directory() . '/dist/css/vendor.css');
139
+        $mainCssExists = file_exists(get_template_directory().'/dist/css/main.css');
140
+        $vendorCssExists = file_exists(get_template_directory().'/dist/css/vendor.css');
141 141
         $mainCssDependencies = [];
142 142
 
143 143
         if (!is_admin()) {
@@ -145,21 +145,21 @@  discard block
 block discarded – undo
145 145
         }
146 146
 
147 147
          if ($vendorJsExists) {
148
-            wp_enqueue_script('stashVendorJs', get_template_directory_uri() . '/dist/js/vendor.js', [], filemtime(get_stylesheet_directory() . '/dist/js/vendor.js'), true);
148
+            wp_enqueue_script('stashVendorJs', get_template_directory_uri().'/dist/js/vendor.js', [], filemtime(get_stylesheet_directory().'/dist/js/vendor.js'), true);
149 149
             array_push($mainJsDependencies, 'stashVendorJs');
150 150
         }
151 151
 
152 152
         if ($mainJsExists) {
153
-            wp_enqueue_script('stashMainJs', get_template_directory_uri() . '/dist/js/main.js', $mainJsDependencies, filemtime(get_stylesheet_directory() . '/dist/js/main.js'), true);
153
+            wp_enqueue_script('stashMainJs', get_template_directory_uri().'/dist/js/main.js', $mainJsDependencies, filemtime(get_stylesheet_directory().'/dist/js/main.js'), true);
154 154
         }
155 155
 
156 156
         if ($vendorCssExists) {
157
-            wp_enqueue_style('stashVendorCss', get_template_directory_uri() . '/dist/css/vendor.css', [], filemtime(get_stylesheet_directory() . '/dist/css/vendor.css'));
157
+            wp_enqueue_style('stashVendorCss', get_template_directory_uri().'/dist/css/vendor.css', [], filemtime(get_stylesheet_directory().'/dist/css/vendor.css'));
158 158
             array_push($mainCssDependencies, 'stashVendorCss');
159 159
         }
160 160
 
161 161
         if ($mainCssExists) {
162
-            wp_enqueue_style('stashMainCss', get_template_directory_uri() . '/dist/css/main.css', $mainCssDependencies, filemtime(get_stylesheet_directory() . '/dist/css/main.css'));
162
+            wp_enqueue_style('stashMainCss', get_template_directory_uri().'/dist/css/main.css', $mainCssDependencies, filemtime(get_stylesheet_directory().'/dist/css/main.css'));
163 163
         }
164 164
     }
165 165
 
Please login to merge, or discard this patch.