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 ( 1a1e57...ace484 )
by
unknown
18:25
created
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.
app/Console/Commands/ThemeMakeCommand.php 1 patch
Doc Comments   +23 added lines, -20 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     /**
52 52
      * Execute the console command.
53 53
      *
54
-     * @return bool|null
54
+     * @return false|null
55 55
      */
56 56
     public function fire()
57 57
     {
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     /**
97 97
      * makeDirectory
98 98
      *
99
-     * @param $path
99
+     * @param string $path
100 100
      *
101 101
      * @return void
102 102
      */
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
      * replaceCode
150 150
      *
151 151
      * @param $stub
152
-     * @param $search
152
+     * @param string $search
153 153
      * @param $replace
154 154
      *
155 155
      * @return $this
@@ -163,6 +163,7 @@  discard block
 block discarded – undo
163 163
     /**
164 164
      * Get the stub file for the generator.
165 165
      *
166
+     * @param string $filename
166 167
      * @return string
167 168
      */
168 169
     protected function getStub($filename)
@@ -278,7 +279,7 @@  discard block
 block discarded – undo
278 279
     /**
279 280
      * getTemplatePath
280 281
      *
281
-     * @param $id
282
+     * @param string $id
282 283
      * @param $plugin
283 284
      *
284 285
      * @return string
@@ -318,15 +319,15 @@  discard block
 block discarded – undo
318 319
      * confirmInfo
319 320
      *
320 321
      * @param $file
321
-     * @param $class
322
+     * @param string $class
322 323
      * @param $plugin
323 324
      * @param $id
324 325
      * @param $title
325 326
      * @param $description
326
-     * @param $template
327
-     * @param $css
327
+     * @param string $template
328
+     * @param string $css
328 329
      *
329
-     * @return bool
330
+     * @return boolean|null
330 331
      */
331 332
     protected function confirmInfo($file, $class, $plugin, $id, $title, $description, $template, $css)
332 333
     {
@@ -356,7 +357,7 @@  discard block
 block discarded – undo
356 357
     /**
357 358
      * getThemeClass
358 359
      *
359
-     * @return array
360
+     * @return string[]
360 361
      */
361 362
     protected function getThemeClass()
362 363
     {
@@ -368,10 +369,12 @@  discard block
 block discarded – undo
368 369
      * makeThemeClass
369 370
      *
370 371
      * @param $file
371
-     * @param $namespace
372
-     * @param $class
372
+     * @param string $namespace
373
+     * @param string $class
373 374
      * @param $plugin
374
-     * @param $template
375
+     * @param string $template
376
+     * @param string $templateView
377
+     * @param string $css
375 378
      *
376 379
      * @return void
377 380
      * @throws \Exception
@@ -396,7 +399,7 @@  discard block
 block discarded – undo
396 399
      * @param $class
397 400
      * @param $m
398 401
      *
399
-     * @return array
402
+     * @return string[]
400 403
      */
401 404
     protected function parseClassName($class)
402 405
     {
@@ -412,7 +415,7 @@  discard block
 block discarded – undo
412 415
     /**
413 416
      * formatJson
414 417
      *
415
-     * @param      $json
418
+     * @param      string $json
416 419
      * @param bool $unescapeUnicode
417 420
      * @param bool $unescapeSlashes
418 421
      *
@@ -513,8 +516,8 @@  discard block
 block discarded – undo
513 516
      * registerTheme
514 517
      *
515 518
      * @param $plugin
516
-     * @param $id
517
-     * @param $class
519
+     * @param string $id
520
+     * @param string $class
518 521
      * @param $title
519 522
      * @param $description
520 523
      *
@@ -547,7 +550,7 @@  discard block
 block discarded – undo
547 550
      * makeTemplate
548 551
      *
549 552
      * @param $plugin
550
-     * @param $template
553
+     * @param string $template
551 554
      *
552 555
      * @return bool
553 556
      */
@@ -563,7 +566,7 @@  discard block
 block discarded – undo
563 566
      * makeCss
564 567
      *
565 568
      * @param $plugin
566
-     * @param $css
569
+     * @param string $css
567 570
      *
568 571
      * @return bool
569 572
      */
@@ -580,8 +583,8 @@  discard block
 block discarded – undo
580 583
      *
581 584
      * @param $file
582 585
      * @param $plugin
583
-     * @param $template
584
-     * @param $css
586
+     * @param string $template
587
+     * @param string $css
585 588
      *
586 589
      * @return void
587 590
      */
Please login to merge, or discard this patch.
app/Http/Controllers/MenuController.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
      *
109 109
      * @param MenuHandler $handler menu handler
110 110
      *
111
-     * @return mixed
111
+     * @return RedirectResponse
112 112
      * @throws Exception
113 113
      */
114 114
     public function store(MenuHandler $handler)
@@ -453,7 +453,7 @@  discard block
 block discarded – undo
453 453
      * @param MenuHandler     $handler menu handler
454 454
      * @param string          $menuId  where to store
455 455
      *
456
-     * @return $this|RedirectResponse
456
+     * @return RedirectResponse
457 457
      * @throws Exception
458 458
      */
459 459
     public function storeItem(MenuHandler $handler, $menuId)
@@ -643,6 +643,9 @@  discard block
 block discarded – undo
643 643
 
644 644
     }
645 645
 
646
+    /**
647
+     * @param string $name
648
+     */
646 649
     protected function registerItemImage(MenuItem $item, $name)
647 650
     {
648 651
         $columnKeyName = $name . 'Id';
Please login to merge, or discard this patch.