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 (#60)
by
unknown
02:41
created
web/app/themes/stash/inc/classes/ImageHelper.php 1 patch
Spacing   +3 added lines, -3 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
     /**
@@ -22,12 +22,12 @@  discard block
 block discarded – undo
22 22
      */
23 23
     function fetch($name)
24 24
     {
25
-        return get_stylesheet_directory() . '/dist/images/' . $name;
25
+        return get_stylesheet_directory().'/dist/images/'.$name;
26 26
     }
27 27
 
28 28
     function display($name)
29 29
     {
30
-        return "<img src='" . $this->get($name) . "' />";
30
+        return "<img src='".$this->get($name)."' />";
31 31
     }
32 32
 
33 33
     /**
Please login to merge, or discard this patch.