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 Setup Failed
Push — master ( a563ba...728916 )
by Dave
01:24
created
src/Templates/Template.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
      */
102 102
     public function assetPath($path = null)
103 103
     {
104
-        return ! is_null($path) ? $this->assetDir().'/'.ltrim($path, '/') : $this->assetDir();
104
+        return !is_null($path) ? $this->assetDir().'/'.ltrim($path, '/') : $this->assetDir();
105 105
     }
106 106
 
107 107
     /**
Please login to merge, or discard this patch.
src/Navigation/Page.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      */
58 58
     public function getModelConfiguration()
59 59
     {
60
-        if (! $this->hasModel()) {
60
+        if (!$this->hasModel()) {
61 61
             return;
62 62
         }
63 63
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      */
70 70
     public function hasModel()
71 71
     {
72
-        return ! is_null($this->model) && class_exists($this->model);
72
+        return !is_null($this->model) && class_exists($this->model);
73 73
     }
74 74
 
75 75
     /**
@@ -113,9 +113,9 @@  discard block
 block discarded – undo
113 113
      */
114 114
     public function getAccessLogic()
115 115
     {
116
-        if (! is_callable($this->accessLogic)) {
116
+        if (!is_callable($this->accessLogic)) {
117 117
             if ($this->hasModel()) {
118
-                return function () {
118
+                return function() {
119 119
                     return $this->getModelConfiguration()->isDisplayable();
120 120
                 };
121 121
             }
@@ -131,13 +131,13 @@  discard block
 block discarded – undo
131 131
      */
132 132
     public function render($view = null)
133 133
     {
134
-        if ($this->hasChild() && ! $this->hasClassProperty($class = config('navigation.class.has_child', 'treeview'))) {
134
+        if ($this->hasChild() && !$this->hasClassProperty($class = config('navigation.class.has_child', 'treeview'))) {
135 135
             $this->setHtmlAttribute('class', $class);
136 136
         }
137 137
 
138 138
         $data = $this->toArray();
139 139
 
140
-        if (! is_null($view)) {
140
+        if (!is_null($view)) {
141 141
             return view($view, $data)->render();
142 142
         }
143 143
 
Please login to merge, or discard this patch.