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/tests/User/PendingEmailRepositoryTest.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,6 @@
 block discarded – undo
102 102
     /**
103 103
      * getRepository
104 104
      *
105
-     * @param null $model
106 105
      *
107 106
      * @return Mockery\MockInterface
108 107
      */
Please login to merge, or discard this patch.
core/tests/User/UserHandlerTest.php 1 patch
Doc Comments   +6 added lines, -1 removed lines patch added patch discarded remove patch
@@ -574,6 +574,10 @@  discard block
 block discarded – undo
574 574
     }
575 575
 
576 576
     /**
577
+     * @param Mockery\MockInterface $users
578
+     * @param Mockery\MockInterface $groups
579
+     * @param Mockery\MockInterface $hasher
580
+     * @param Mockery\MockInterface $validator
577 581
      * @return \Xpressengine\User\UserHandler
578 582
      */
579 583
     private function getHandler(
@@ -640,7 +644,8 @@  discard block
 block discarded – undo
640 644
     }
641 645
 
642 646
     /**
643
-     * @return \Xpressengine\User\UserHandler
647
+     * @param Mockery\MockInterface $hasher
648
+     * @return Mockery\Mock
644 649
      */
645 650
     private function getHandlerMock(
646 651
         $users = null,
Please login to merge, or discard this patch.
core/src/Xpressengine/Translation/Translator.php 1 patch
Doc Comments   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -155,8 +155,8 @@  discard block
 block discarded – undo
155 155
      * @param string $id         다국어 key
156 156
      * @param array  $parameters 인자
157 157
      * @param null   $domain     domain
158
-     * @param null   $locale     locale
159
-     * @return mixed
158
+     * @param string   $locale     locale
159
+     * @return string
160 160
      */
161 161
     public function trans($id, array $parameters = array(), $domain = null, $locale = null)
162 162
     {
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
      * @param array  $parameters 인자
202 202
      * @param null   $domain     domain
203 203
      * @param null   $locale     locale
204
-     * @return mixed
204
+     * @return string
205 205
      */
206 206
     public function transChoice($id, $number, array $parameters = array(), $domain = null, $locale = null)
207 207
     {
@@ -219,8 +219,8 @@  discard block
 block discarded – undo
219 219
      *
220 220
      * @param string $key     다국어 key
221 221
      * @param array  $replace 변경 데이터
222
-     * @param null   $locale  로케일
223
-     * @return mixed
222
+     * @param null|string   $locale  로케일
223
+     * @return string
224 224
      */
225 225
     public function get($key, array $replace = [], $locale = null)
226 226
     {
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
      * @param int    $number  숫자
243 243
      * @param array  $replace 변경 데이터
244 244
      * @param null   $locale  로케일
245
-     * @return mixed
245
+     * @return string
246 246
      */
247 247
     public function choice($key, $number, array $replace = [], $locale = null)
248 248
     {
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
 
256 256
     /**
257 257
      * @param string $key 다국어 key
258
-     * @return mixed
258
+     * @return string
259 259
      */
260 260
     public function getOriginalLine($key)
261 261
     {
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
      * @param string $item      아이템
269 269
      * @param string $locale    로케일
270 270
      * @param array  $replace   변경 데이터
271
-     * @return mixed
271
+     * @return string
272 272
      */
273 273
     protected function getLine($namespace, $item, $locale, array $replace)
274 274
     {
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
      *
283 283
      * @param string $line    원시 라인
284 284
      * @param array  $replace 변경 데이터
285
-     * @return mixed
285
+     * @return string
286 286
      */
287 287
     protected function makeReplacements($line, array $replace)
288 288
     {
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
      * 먼저 해석하여 정확도를 높여줍니다.
303 303
      *
304 304
      * @param array $replace 변경 데이터
305
-     * @return array
305
+     * @return Collection
306 306
      */
307 307
     protected function sortReplacements(array $replace)
308 308
     {
Please login to merge, or discard this patch.
resources/UIObjects/Settings/SettingsPermission.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -64,6 +64,9 @@
 block discarded – undo
64 64
         }
65 65
     }
66 66
 
67
+    /**
68
+     * @param AbstractUIObject $content
69
+     */
67 70
     private function generateBox($title, $content)
68 71
     {
69 72
         return "<div class=\"form-group\">
Please login to merge, or discard this patch.
core/src/Xpressengine/Permission/Grant.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
      * Add grant information
61 61
      *
62 62
      * @param string       $action action type
63
-     * @param string|array $type   value type
63
+     * @param string $type   value type
64 64
      * @param mixed        $value  values
65 65
      * @return $this
66 66
      */
Please login to merge, or discard this patch.
core/src/Xpressengine/User/UserHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -514,7 +514,7 @@
 block discarded – undo
514 514
      * @param UserInterface $user     user
515 515
      * @param array         $userData user data
516 516
      *
517
-     * @return UserInterface|static
517
+     * @return UserInterface
518 518
      */
519 519
     public function update(UserInterface $user, $userData)
520 520
     {
Please login to merge, or discard this patch.