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 ( d6dae8...466bf0 )
by Vincent
02:52
created
web/app/themes/stash/lib/images.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -23,11 +23,11 @@
 block discarded – undo
23 23
     function display($name)
24 24
     {
25 25
         $stream_opts = [
26
-           "ssl" => [
27
-               "verify_peer"      => false,
28
-               "verify_peer_name" => false,
29
-           ]
30
-       ];
26
+            "ssl" => [
27
+                "verify_peer"      => false,
28
+                "verify_peer_name" => false,
29
+            ]
30
+        ];
31 31
         
32 32
         $imageUrl = $this->get($name);
33 33
 
Please login to merge, or discard this 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
     /**
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         if (strpos($imageUrl, '.svg') !== false) {
36 36
             return file_get_contents($imageUrl, false, stream_context_create($stream_opts));
37 37
         } else {
38
-            return "<img src='" . $this->get($name) . "' />";
38
+            return "<img src='".$this->get($name)."' />";
39 39
         }
40 40
     }
41 41
 }
Please login to merge, or discard this patch.