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/Permission/PolicyTest.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -57,11 +57,21 @@
 block discarded – undo
57 57
 
58 58
 class SamplePolicy extends Policy
59 59
 {
60
+    /**
61
+     * @param m\MockInterface $user
62
+     * @param string $name
63
+     * @param string $siteKey
64
+     */
60 65
     public function update($user, $name, $siteKey)
61 66
     {
62 67
         return $this->check($user, $this->get($name, $siteKey), 'update');
63 68
     }
64 69
 
70
+    /**
71
+     * @param m\MockInterface $user
72
+     * @param string $name
73
+     * @param string $siteKey
74
+     */
65 75
     public function read($user, $name, $siteKey)
66 76
     {
67 77
         return $this->check($user, $this->get($name, $siteKey), 'read');
Please login to merge, or discard this patch.
core/tests/Routing/DatabaseRouteRepositoryTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -315,6 +315,9 @@
 block discarded – undo
315 315
         ];
316 316
     }
317 317
 
318
+    /**
319
+     * @param string $methodName
320
+     */
318 321
     private function invokeMethod(&$object, $methodName, array $parameters = array())
319 322
     {
320 323
         $reflection = new \ReflectionClass(get_class($object));
Please login to merge, or discard this patch.
core/tests/Site/SiteHandlerTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -315,6 +315,9 @@
 block discarded – undo
315 315
         ];
316 316
     }
317 317
 
318
+    /**
319
+     * @param string $methodName
320
+     */
318 321
     private function invokeMethod(&$object, $methodName, array $parameters = array())
319 322
     {
320 323
         $reflection = new \ReflectionClass(get_class($object));
Please login to merge, or discard this patch.
core/tests/Tag/TagHandlerTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -191,6 +191,10 @@
 block discarded – undo
191 191
         $this->assertInstanceOf('Xpressengine\Tag\Tag', current($tags));
192 192
     }
193 193
 
194
+    /**
195
+     * @param TagHandler $object
196
+     * @param string $methodName
197
+     */
194 198
     private function invokeMethod(&$object, $methodName, array $parameters = array())
195 199
     {
196 200
         $reflection = new \ReflectionClass(get_class($object));
Please login to merge, or discard this patch.
core/src/Xpressengine/Settings/SettingsHandler.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
      *
249 249
      * @param boolean $isSuper 최고관리자 여부
250 250
      *
251
-     * @return SettingsMenu[]
251
+     * @return \Illuminate\Support\Collection
252 252
      */
253 253
     public function getSettingsMenus($isSuper)
254 254
     {
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
     /**
365 365
      * getRegisteredMenus
366 366
      *
367
-     * @return array
367
+     * @return \Xpressengine\Support\Tree\NodeInterface[]
368 368
      * @throws \Exception
369 369
      */
370 370
     private function getRegisteredMenus()
Please login to merge, or discard this patch.
core/src/Xpressengine/Settings/SettingsMenu.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
     /**
205 205
      * Return the parent node or null
206 206
      *
207
-     * @return mixed
207
+     * @return null|SettingsMenu
208 208
      */
209 209
     public function getParent()
210 210
     {
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
     /**
249 249
      * getChildren
250 250
      *
251
-     * @return NodeInterface[]
251
+     * @return SettingsMenu[]
252 252
      */
253 253
     public function getChildren()
254 254
     {
Please login to merge, or discard this patch.
core/tests/Counter/CounterTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
      * get counter instance
52 52
      *
53 53
      * @param string $name    counter name
54
-     * @param array  $options counter options
54
+     * @param string[]  $options counter options
55 55
      * @return Counter
56 56
      */
57 57
     private function getCounter($name, array $options = [])
Please login to merge, or discard this patch.
core/src/Xpressengine/Document/DocumentHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
     /**
118 118
      * check exists
119 119
      *
120
-     * @return bool
120
+     * @return boolean|null
121 121
      */
122 122
     public function exists()
123 123
     {
Please login to merge, or discard this patch.
core/src/Xpressengine/Document/Models/Document.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -428,7 +428,7 @@
 block discarded – undo
428 428
     /**
429 429
      * 덧글의 depth 반환
430 430
      *
431
-     * @return float
431
+     * @return integer
432 432
      */
433 433
     public function getDepth()
434 434
     {
Please login to merge, or discard this patch.