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/DynamicQuery.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -340,7 +340,7 @@  discard block
 block discarded – undo
340 340
      * get list
341 341
      *
342 342
      * @param array $columns get columns list
343
-     * @return array|static[]
343
+     * @return integer
344 344
      */
345 345
     public function count($columns = '*')
346 346
     {
@@ -436,7 +436,7 @@  discard block
 block discarded – undo
436 436
      *
437 437
      * @param int   $perPage count of list
438 438
      * @param array $columns get columns
439
-     * @return \Illuminate\Contracts\Pagination\LengthAwarePaginator
439
+     * @return \Illuminate\Pagination\Paginator
440 440
      */
441 441
     public function simplePaginate($perPage = 15, $columns = ['*'], $pageName = 'page')
442 442
     {
Please login to merge, or discard this patch.
core/src/Xpressengine/Media/MediaManager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
      * 파일이 특정 미디어 타입과 매칭된다며 해당 타입 반환
150 150
      *
151 151
      * @param File $file file instance
152
-     * @return string|null
152
+     * @return integer|null
153 153
      */
154 154
     public function getFileType(File $file)
155 155
     {
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
      * 미디어 삭제
213 213
      *
214 214
      * @param Media $media media instance
215
-     * @return bool
215
+     * @return boolean|null
216 216
      */
217 217
     public function remove(Media $media)
218 218
     {
Please login to merge, or discard this patch.
core/src/Xpressengine/Permission/PermissionHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -231,7 +231,7 @@
 block discarded – undo
231 231
      *
232 232
      * @param string $name    permission name
233 233
      * @param string $siteKey site key name
234
-     * @return Permission|null
234
+     * @return Permission
235 235
      */
236 236
     public function findOrNew($name, $siteKey = 'default')
237 237
     {
Please login to merge, or discard this patch.
core/src/Xpressengine/Storage/File.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
     /**
121 121
      * Get the derive files of current file with the File type
122 122
      *
123
-     * @return Collection|static[]
123
+     * @return File
124 124
      */
125 125
     public function getRawDerives()
126 126
     {
Please login to merge, or discard this patch.
core/src/Xpressengine/Storage/Storage.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/User/Repositories/PendingEmailRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
      * @param UserInterface $user
48 48
      * @param array         $data
49 49
      *
50
-     * @return EmailInterface
50
+     * @return \Xpressengine\Database\Eloquent\DynamicModel
51 51
      */
52 52
     public function create(UserInterface $user, array $data)
53 53
     {
Please login to merge, or discard this patch.
core/src/Xpressengine/User/Repositories/UserAccountRepository.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      * @param UserInterface $user
47 47
      * @param array         $data
48 48
      *
49
-     * @return AccountInterface
49
+     * @return \Xpressengine\Database\Eloquent\DynamicModel
50 50
      */
51 51
     public function create(UserInterface $user, array $data)
52 52
     {
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      *
61 61
      * @param string $userId user id
62 62
      *
63
-     * @return array
63
+     * @return \Illuminate\Database\Eloquent\Collection
64 64
      */
65 65
     public function findByUserId($userId)
66 66
     {
Please login to merge, or discard this patch.
core/src/Xpressengine/User/Repositories/UserEmailRepository.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      * @param UserInterface $user
48 48
      * @param array         $data
49 49
      *
50
-     * @return EmailInterface
50
+     * @return \Xpressengine\Database\Eloquent\DynamicModel
51 51
      */
52 52
     public function create(UserInterface $user, array $data)
53 53
     {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      *
92 92
      * @param $userId
93 93
      *
94
-     * @return EmailInterface[]
94
+     * @return \Illuminate\Database\Eloquent\Collection
95 95
      */
96 96
     public function findByUserId($userId)
97 97
     {
Please login to merge, or discard this patch.
core/src/Xpressengine/User/Repositories/UserRepository.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      *
45 45
      * @param array $data
46 46
      *
47
-     * @return UserInterface
47
+     * @return \Xpressengine\Database\Eloquent\DynamicModel
48 48
      */
49 49
     public function create(array $data)
50 50
     {
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      * @param string        $emailPrefix 조회할 이메일의 이름영역
104 104
      * @param string[]|null $with        함께 반환할 relation 정보
105 105
      *
106
-     * @return UserInterface[]
106
+     * @return \Illuminate\Database\Eloquent\Collection
107 107
      */
108 108
     public function searchByEmailPrefix($emailPrefix, $with = null)
109 109
     {
Please login to merge, or discard this patch.