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 ( 17d026...23e748 )
by Vincent
10s
created
web/app/themes/stash/lib/timber.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
         $twig->addExtension(new Twig_Extension_StringLoader());
59 59
         $twig->addGlobal('image', new ImageHelper());
60 60
         
61
-         $filter = new Twig_SimpleFilter("translate", function ($string) {
61
+            $filter = new Twig_SimpleFilter("translate", function ($string) {
62 62
             pll_register_string($string, $string, "stash");
63 63
 
64 64
             return pll__($string);
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@  discard block
 block discarded – undo
6 6
  */
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;
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         $twig->addExtension(new Twig_Extension_StringLoader());
59 59
         $twig->addGlobal('image', new ImageHelper());
60 60
         
61
-         $filter = new Twig_SimpleFilter("translate", function ($string) {
61
+         $filter = new Twig_SimpleFilter("translate", function($string) {
62 62
             pll_register_string($string, $string, "stash");
63 63
 
64 64
             return pll__($string);
Please login to merge, or discard this patch.