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.
Test Failed
Push — master ( 20d72c...1432f6 )
by Caspar
04:47
created
app/Logic/Macros/HtmlMacros.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-HTML::macro('image_link', function ($url = '', $img = '', $alt = '', $link_name = '', $param = '', $active = true, $ssl = false) {
3
+HTML::macro('image_link', function($url = '', $img = '', $alt = '', $link_name = '', $param = '', $active = true, $ssl = false) {
4 4
     $url = $ssl == true ? URL::to_secure($url) : URL::to($url);
5 5
     $img = HTML::image($img, $alt);
6 6
     $img .= $link_name;
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
     return $link;
11 11
 });
12 12
 
13
-HTML::macro('icon_link', function ($url = '', $icon = '', $link_name = '', $param = '', $active = true, $ssl = false) {
13
+HTML::macro('icon_link', function($url = '', $icon = '', $link_name = '', $param = '', $active = true, $ssl = false) {
14 14
     $url = $ssl == true ? URL::to_secure($url) : URL::to($url);
15 15
     $icon = '<i class="'.$icon.'" aria-hidden="true"></i>'.$link_name;
16 16
     $link = $active == true ? HTML::link($url, '#', $param) : $icon;
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     return $link;
20 20
 });
21 21
 
22
-HTML::macro('icon_btn', function ($url = '', $icon = '', $link_name = '', $param = '', $active = true, $ssl = false) {
22
+HTML::macro('icon_btn', function($url = '', $icon = '', $link_name = '', $param = '', $active = true, $ssl = false) {
23 23
     $url = $ssl == true ? URL::to_secure($url) : URL::to($url);
24 24
     $icon = $link_name.' <i class="'.$icon.'" aria-hidden="true"></i>';
25 25
     $link = $active == true ? HTML::link($url, '#', $param) : $icon;
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 });
30 30
 
31 31
 // SHOW USERNAME
32
-HTML::macro('show_username', function () {
32
+HTML::macro('show_username', function() {
33 33
     $the_username = (Auth::user()->name === Auth::user()->email) ? ((is_null(Auth::user()->first_name)) ? (Auth::user()->name) : (Auth::user()->first_name)) : (((is_null(Auth::user()->name)) ? (Auth::user()->email) : (Auth::user()->name)));
34 34
 
35 35
     return $the_username;
Please login to merge, or discard this patch.