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 ( eb7034...336670 )
by
unknown
10:15
created
core/src/Xpressengine/Database/VirtualConnection.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -270,8 +270,7 @@
 block discarded – undo
270 270
     public function connection($type)
271 271
     {
272 272
         $connection = ($this->connections[$type] === null) ?
273
-            $this->coupler->connect($this->{$type}) :
274
-            $this->connections[$type];
273
+            $this->coupler->connect($this->{$type}) : $this->connections[$type];
275 274
         $connection->setFetchMode($this->fetchMode);
276 275
         return $connection;
277 276
     }
Please login to merge, or discard this patch.
core/src/Xpressengine/Http/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
      */
94 94
     public function getMobileResolver()
95 95
     {
96
-        return $this->mobileResolver ?: function () {
96
+        return $this->mobileResolver ?: function() {
97 97
         };
98 98
     }
99 99
 
Please login to merge, or discard this patch.
core/src/Xpressengine/Plugin/PluginCollection.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 
199 199
         return array_filter(
200 200
             $plugins,
201
-            function ($entity) use ($status) {
201
+            function($entity) use ($status) {
202 202
 
203 203
                 /** @var PluginEntity $entity */
204 204
                 return $entity->getStatus() === $status;
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
 
222 222
         $plugins = array_filter(
223 223
             $plugins,
224
-            function ($entity) use ($searchWord) {
224
+            function($entity) use ($searchWord) {
225 225
 
226 226
                 /** @var PluginEntity $entity */
227 227
                 $subject = implode(
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
 
265 265
         $plugins = array_filter(
266 266
             $plugins,
267
-            function ($entity) use ($component) {
267
+            function($entity) use ($component) {
268 268
 
269 269
                 /** @var PluginEntity $entity */
270 270
                 $componentList = $entity->getComponentList($component);
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
     public function toArray()
328 328
     {
329 329
         return array_map(
330
-            function ($value) {
330
+            function($value) {
331 331
                 /** @var PluginEntity $value */
332 332
                 return $value->toArray();
333 333
             },
Please login to merge, or discard this patch.
core/src/Xpressengine/Presenter/Html/Tags/SortTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     public function before($befores)
52 52
     {
53 53
         $befores = array_map(
54
-            function ($before) {
54
+            function($before) {
55 55
                 return $this->resolveKey($before);
56 56
             },
57 57
             (array) $befores
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     public function after($afters)
71 71
     {
72 72
         $afters = array_map(
73
-            function ($after) {
73
+            function($after) {
74 74
                 return $this->resolveKey($after);
75 75
             },
76 76
             (array) $afters
Please login to merge, or discard this patch.
core/src/Xpressengine/Storage/RoundRobinDistributor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
     {
86 86
         $row = $this->conn->table($this->table)->orderBy('createdAt', 'desc')->first();
87 87
 
88
-        return $row ? (array)$row : null;
88
+        return $row ? (array) $row : null;
89 89
     }
90 90
 
91 91
     /**
Please login to merge, or discard this patch.
core/src/Xpressengine/Support/Caster.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
      */
80 80
     protected static function castInt($v)
81 81
     {
82
-        return !preg_match('/[^0-9]/', $v) ? (int)$v : null;
82
+        return !preg_match('/[^0-9]/', $v) ? (int) $v : null;
83 83
     }
84 84
 
85 85
     /**
@@ -90,6 +90,6 @@  discard block
 block discarded – undo
90 90
      */
91 91
     protected static function castFloat($v)
92 92
     {
93
-        return !preg_match('/[^0-9\.]/', $v) ? (float)$v : null;
93
+        return !preg_match('/[^0-9\.]/', $v) ? (float) $v : null;
94 94
     }
95 95
 }
Please login to merge, or discard this patch.
core/src/Xpressengine/Temporary/TemporaryRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
         $row = $this->conn->table($this->table)->where('id', $id)->first();
73 73
 
74 74
         if ($row !== null) {
75
-            return $this->createItem((array)$row);
75
+            return $this->createItem((array) $row);
76 76
         }
77 77
 
78 78
         return null;
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
 
95 95
         $items = [];
96 96
         foreach ($rows as $row) {
97
-            $items[] = $this->createItem((array)$row);
97
+            $items[] = $this->createItem((array) $row);
98 98
         }
99 99
 
100 100
         return $items;
Please login to merge, or discard this patch.
core/src/Xpressengine/Translation/TransCachedDatabase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
      */
71 71
     public function putLangData($namespace, LangData $langData)
72 72
     {
73
-        $langData->each(function ($item, $locale, $value) use ($namespace) {
73
+        $langData->each(function($item, $locale, $value) use ($namespace) {
74 74
             $this->putLine($namespace, $item, $locale, $value);
75 75
         });
76 76
     }
Please login to merge, or discard this patch.
core/src/Xpressengine/Translation/helpers.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  * @link        http://www.xpressengine.com
13 13
  */
14 14
 
15
-if (! function_exists('xe_trans')) {
15
+if (!function_exists('xe_trans')) {
16 16
     /**
17 17
      * @param null   $id         다국어 키
18 18
      * @param array  $parameters 파라매터
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     }
31 31
 }
32 32
 
33
-if (! function_exists('xe_trans_choice')) {
33
+if (!function_exists('xe_trans_choice')) {
34 34
     /**
35 35
      * @param string $id         다국어 키
36 36
      * @param int    $number     숫자
Please login to merge, or discard this patch.