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
Pull Request — develop (#322)
by
unknown
01:59
created
component/admin/vendor/composer/autoload_static.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -91,6 +91,9 @@
 block discarded – undo
91 91
         'JsonSerializable' => __DIR__ . '/..' . '/joomla/compat/src/JsonSerializable.php',
92 92
     );
93 93
 
94
+    /**
95
+     * @return callable
96
+     */
94 97
     public static function getInitializer(ClassLoader $loader)
95 98
     {
96 99
         return \Closure::bind(function () use ($loader) {
Please login to merge, or discard this patch.
component/admin/vendor/composer/ClassLoader.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -367,6 +367,10 @@
 block discarded – undo
367 367
         return $file;
368 368
     }
369 369
 
370
+    /**
371
+     * @param string $class
372
+     * @param string $ext
373
+     */
370 374
     private function findFileWithExtension($class, $ext)
371 375
     {
372 376
         // PSR-4 lookup
Please login to merge, or discard this patch.
component/admin/vendor/joomla/github/src/Github.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
 	 * Set an option for the GitHub instance.
111 111
 	 *
112 112
 	 * @param   string  $key    The name of the option to set.
113
-	 * @param   mixed   $value  The option value to set.
113
+	 * @param   string   $value  The option value to set.
114 114
 	 *
115 115
 	 * @return  GitHub  This object for method chaining.
116 116
 	 *
Please login to merge, or discard this patch.
component/admin/vendor/joomla/github/src/Package/Activity/Starring.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 namespace Joomla\Github\Package\Activity;
10 10
 
11 11
 use Joomla\Github\AbstractPackage;
12
-use Joomla\Uri\Uri;
13 12
 
14 13
 /**
15 14
  * GitHub API Activity Events class for the Joomla Framework.
Please login to merge, or discard this patch.
component/admin/vendor/joomla/github/src/Package/Orgs/Members.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 	 * @throws \UnexpectedValueException
72 72
 	 * @since  1.0
73 73
 	 *
74
-	 * @return boolean
74
+	 * @return boolean|null
75 75
 	 */
76 76
 	public function check($org, $user)
77 77
 	{
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
 	 * @throws \UnexpectedValueException
165 165
 	 * @since  1.0
166 166
 	 *
167
-	 * @return boolean
167
+	 * @return boolean|null
168 168
 	 */
169 169
 	public function checkPublic($org, $user)
170 170
 	{
Please login to merge, or discard this patch.
component/admin/vendor/joomla/github/src/Package/Orgs/Teams.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
 	 * @param   integer  $id    The team id.
201 201
 	 * @param   string   $user  The name of the user.
202 202
 	 *
203
-	 * @return  boolean
203
+	 * @return  boolean|null
204 204
 	 *
205 205
 	 * @since   1.0
206 206
 	 * @throws  \UnexpectedValueException
@@ -401,7 +401,7 @@  discard block
 block discarded – undo
401 401
 	 * @param   string   $owner  The owner of the GitHub repository.
402 402
 	 * @param   string   $repo   The name of the GitHub repository.
403 403
 	 *
404
-	 * @return  boolean
404
+	 * @return  boolean|null
405 405
 	 *
406 406
 	 * @since   1.0
407 407
 	 * @throws  \UnexpectedValueException
Please login to merge, or discard this patch.
admin/vendor/joomla/github/src/Package/Repositories/Collaborators.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 	 * @throws \UnexpectedValueException
54 54
 	 * @since  1.0
55 55
 	 *
56
-	 * @return boolean
56
+	 * @return boolean|null
57 57
 	 */
58 58
 	public function get($owner, $repo, $user)
59 59
 	{
Please login to merge, or discard this patch.
component/admin/vendor/joomla/github/src/Package/Users/Followers.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 	 *
67 67
 	 * @param   string  $user  The name of the user.
68 68
 	 *
69
-	 * @return  boolean
69
+	 * @return  boolean|null
70 70
 	 *
71 71
 	 * @since   1.0
72 72
 	 * @throws  \UnexpectedValueException
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 	 * @param   string  $user    The name of the user.
103 103
 	 * @param   string  $target  The name of the user to check is being followed.
104 104
 	 *
105
-	 * @return  boolean
105
+	 * @return  boolean|null
106 106
 	 *
107 107
 	 * @since   1.4.0
108 108
 	 * @throws  \UnexpectedValueException
Please login to merge, or discard this patch.
component/admin/vendor/joomla/registry/src/Format/Php.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 	 * @param   string  $data     PHP Class formatted string to convert.
76 76
 	 * @param   array   $options  Options used by the formatter.
77 77
 	 *
78
-	 * @return  object   Data object.
78
+	 * @return  boolean   Data object.
79 79
 	 *
80 80
 	 * @since   1.0
81 81
 	 */
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 	 *
90 90
 	 * @param   array  $a  The array to get as a string.
91 91
 	 *
92
-	 * @return  array
92
+	 * @return  string
93 93
 	 *
94 94
 	 * @since   1.0
95 95
 	 */
Please login to merge, or discard this patch.