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 ( ed9166...b2510c )
by butschster
09:02 queued 02:41
created
src/Display/DisplayTree.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     public static function registerRoutes(Router $router)
23 23
     {
24 24
         $routeName = 'admin.display.tree.reorder';
25
-        if (! $router->has($routeName)) {
25
+        if (!$router->has($routeName)) {
26 26
             $router->post('{adminModel}/reorder', ['as' => $routeName, 'uses' => 'SleepingOwl\Admin\Http\Controllers\DisplayController@treeReorder']);
27 27
         }
28 28
     }
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
              ->setOrderField($this->getOrderField())
111 111
              ->setRootParentId($this->getRootParentId());
112 112
 
113
-        if (! is_null($this->treeType)) {
113
+        if (!is_null($this->treeType)) {
114 114
             $repository->setTreeType($this->treeType);
115 115
         }
116 116
     }
@@ -305,11 +305,11 @@  discard block
 block discarded – undo
305 305
      */
306 306
     public function getCollection()
307 307
     {
308
-        if (! $this->isInitialized()) {
308
+        if (!$this->isInitialized()) {
309 309
             throw new \Exception('Display is not initialized');
310 310
         }
311 311
 
312
-        if (! is_null($this->collection)) {
312
+        if (!is_null($this->collection)) {
313 313
             return $this->collection;
314 314
         }
315 315
 
@@ -340,7 +340,7 @@  discard block
 block discarded – undo
340 340
     {
341 341
         $repository = parent::makeRepository();
342 342
 
343
-        if (! ($repository instanceof TreeRepositoryInterface)) {
343
+        if (!($repository instanceof TreeRepositoryInterface)) {
344 344
             throw new \Exception('Repository class must be instanced of [TreeRepositoryInterface]');
345 345
         }
346 346
 
Please login to merge, or discard this patch.
src/Repositories/BaseRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public function setClass($class)
58 58
     {
59
-        if (! class_exists($class)) {
59
+        if (!class_exists($class)) {
60 60
             throw new RepositoryException("Class {$class} not found.");
61 61
         }
62 62
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      */
104 104
     public function with($with)
105 105
     {
106
-        if (! is_array($with)) {
106
+        if (!is_array($with)) {
107 107
             $with = func_get_args();
108 108
         }
109 109
 
Please login to merge, or discard this patch.
src/Repositories/TreeRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      */
41 41
     public function __construct($treeType = null)
42 42
     {
43
-        if (! is_null($treeType)) {
43
+        if (!is_null($treeType)) {
44 44
             $this->setTreeType($treeType);
45 45
         }
46 46
     }
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     {
55 55
         $this->treeType = new $treeType($this);
56 56
 
57
-        if (! ($this->treeType instanceof TreeTypeInterface)) {
57
+        if (!($this->treeType instanceof TreeTypeInterface)) {
58 58
             throw new DisplayTreeException('Tree type class must be instanced of [SleepingOwl\Admin\Contracts\Display\Tree\TreeTypeInterface]');
59 59
         }
60 60
     }
Please login to merge, or discard this patch.
src/Http/Controllers/FormElementController.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -20,9 +20,9 @@  discard block
 block discarded – undo
20 20
      */
21 21
     public function dependentSelect(Request $request, ModelConfigurationInterface $model, $field, $id = null)
22 22
     {
23
-        if (! is_null($id)) {
23
+        if (!is_null($id)) {
24 24
             $item = $model->getRepository()->find($id);
25
-            if (is_null($item) || ! $model->isEditable($item)) {
25
+            if (is_null($item) || !$model->isEditable($item)) {
26 26
                 return new JsonResponse([
27 27
                     'message' => trans('lang.message.access_denied'),
28 28
                 ], 403);
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
             $form = $model->fireEdit($id);
32 32
         } else {
33
-            if (! $model->isCreatable()) {
33
+            if (!$model->isCreatable()) {
34 34
                 return new JsonResponse([
35 35
                     'message' => trans('lang.message.access_denied'),
36 36
                 ], 403);
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         }
58 58
 
59 59
         return new JsonResponse([
60
-            'output' => collect($options)->map(function ($value, $key) {
60
+            'output' => collect($options)->map(function($value, $key) {
61 61
                 return ['id' => $key, 'name' => $value];
62 62
             }),
63 63
             'selected' => $element->getValueFromModel(),
@@ -74,9 +74,9 @@  discard block
 block discarded – undo
74 74
      */
75 75
     public function multiselectSearch(Request $request, ModelConfigurationInterface $model, $field, $id = null)
76 76
     {
77
-        if (! is_null($id)) {
77
+        if (!is_null($id)) {
78 78
             $item = $model->getRepository()->find($id);
79
-            if (is_null($item) || ! $model->isEditable($item)) {
79
+            if (is_null($item) || !$model->isEditable($item)) {
80 80
                 return new JsonResponse([
81 81
                     'message' => trans('lang.message.access_denied'),
82 82
                 ], 403);
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
             $form = $model->fireEdit($id);
86 86
         } else {
87
-            if (! $model->isCreatable()) {
87
+            if (!$model->isCreatable()) {
88 88
                 return new JsonResponse([
89 89
                     'message' => trans('lang.message.access_denied'),
90 90
                 ], 403);
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
             return new JsonResponse(
108 108
                 $model::where($request->field, 'like', "%{$request->q}%")
109 109
                     ->get()
110
-                    ->map(function ($item) use ($field) {
110
+                    ->map(function($item) use ($field) {
111 111
                         return [
112 112
                             'tag_name'    => $item->{$field},
113 113
                             'id'          => $item->id,
@@ -128,9 +128,9 @@  discard block
 block discarded – undo
128 128
      */
129 129
     public function selectSearch(Request $request, ModelConfigurationInterface $model, $field, $id = null)
130 130
     {
131
-        if (! is_null($id)) {
131
+        if (!is_null($id)) {
132 132
             $item = $model->getRepository()->find($id);
133
-            if (is_null($item) || ! $model->isEditable($item)) {
133
+            if (is_null($item) || !$model->isEditable($item)) {
134 134
                 return new JsonResponse([
135 135
                     'message' => trans('lang.message.access_denied'),
136 136
                 ], 403);
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 
139 139
             $form = $model->fireEdit($id);
140 140
         } else {
141
-            if (! $model->isCreatable()) {
141
+            if (!$model->isCreatable()) {
142 142
                 return new JsonResponse([
143 143
                     'message' => trans('lang.message.access_denied'),
144 144
                 ], 403);
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
             return new JsonResponse(
162 162
                 $model::where($request->field, 'like', "%{$request->q}%")
163 163
                     ->get()
164
-                    ->map(function ($item) use ($field) {
164
+                    ->map(function($item) use ($field) {
165 165
                         return [
166 166
                             'tag_name'    => $item->{$field},
167 167
                             'id'          => $item->id,
Please login to merge, or discard this patch.