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 ( f7e7f2...433205 )
by Joni
03:46
created
lib/ASN1/Type/TaggedType.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 *
30 30
 	 * @param int|null $expectedTag Optional outer tag expectation
31 31
 	 * @throws \UnexpectedValueException If expectation fails
32
-	 * @return ExplicitTagging
32
+	 * @return TaggedType
33 33
 	 */
34 34
 	public function expectExplicit($expectedTag = null) {
35 35
 		if (!($this instanceof ExplicitTagging)) {
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 	 *
59 59
 	 * @param int|null $expectedTag Optional outer tag expectation
60 60
 	 * @throws \UnexpectedValueException If expectation fails
61
-	 * @return ImplicitTagging
61
+	 * @return TaggedType
62 62
 	 */
63 63
 	public function expectImplicit($expectedTag = null) {
64 64
 		if (!($this instanceof ImplicitTagging)) {
@@ -76,7 +76,6 @@  discard block
 block discarded – undo
76 76
 	 *
77 77
 	 * @param int $tag Type tag of the inner element
78 78
 	 * @param int|null $expectedTag Optional outer tag expectation
79
-	 * @param int $class Optional inner type class expectation
80 79
 	 * @throws \UnexpectedValueException If expectation fails
81 80
 	 * @return UnspecifiedType
82 81
 	 */
Please login to merge, or discard this patch.