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 ( 08475d...3f0af0 )
by Joni
06:37 queued 02:21
created
lib/X509/AttributeCertificate/Attribute/IetfAttrSyntax.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -37,6 +37,7 @@
 block discarded – undo
37 37
 	 * Constructor
38 38
 	 *
39 39
 	 * @param IetfAttrValue ...$values
40
+	 * @param IetfAttrValue[] $values
40 41
 	 */
41 42
 	public function __construct(IetfAttrValue ...$values) {
42 43
 		$this->_policyAuthority = null;
Please login to merge, or discard this patch.
lib/X509/Certificate/Extension/CertificatePoliciesExtension.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 	 *
28 28
 	 * @param bool $critical
29 29
 	 * @param PolicyInformation ...$policies
30
+	 * @param PolicyInformation[] $policies
30 31
 	 */
31 32
 	public function __construct($critical, PolicyInformation ...$policies) {
32 33
 		parent::__construct(Extension::OID_CERTIFICATE_POLICIES, $critical);
Please login to merge, or discard this patch.
lib/X509/Certificate/Extension/CertificatePolicy/DisplayText.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 	 * Generate ASN.1 element.
80 80
 	 *
81 81
 	 * @throws \UnexpectedValueException
82
-	 * @return StringType
82
+	 * @return Element[]
83 83
 	 */
84 84
 	public function toASN1() {
85 85
 		switch ($this->_tag) {
@@ -97,6 +97,9 @@  discard block
 block discarded – undo
97 97
 		}
98 98
 	}
99 99
 	
100
+	/**
101
+	 * @param string $str
102
+	 */
100 103
 	protected static function _determineType($str) {
101 104
 		// @todo Support other types
102 105
 		return Element::TYPE_UTF8_STRING;
Please login to merge, or discard this patch.
lib/X509/Certificate/Extension/CertificatePolicy/NoticeReference.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -34,6 +34,7 @@
 block discarded – undo
34 34
 	 *
35 35
 	 * @param DisplayText $organization
36 36
 	 * @param int ...$numbers
37
+	 * @param integer[] $numbers
37 38
 	 */
38 39
 	public function __construct(DisplayText $organization, ...$numbers) {
39 40
 		$this->_organization = $organization;
Please login to merge, or discard this patch.
lib/X509/Certificate/Extension/CertificatePolicy/PolicyInformation.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -41,6 +41,7 @@
 block discarded – undo
41 41
 	 *
42 42
 	 * @param string $oid
43 43
 	 * @param PolicyQualifierInfo ...$qualifiers
44
+	 * @param PolicyQualifierInfo[] $qualifiers
44 45
 	 */
45 46
 	public function __construct($oid, PolicyQualifierInfo ...$qualifiers) {
46 47
 		$this->_oid = $oid;
Please login to merge, or discard this patch.
lib/X509/Certificate/Extension/CRLDistributionPointsExtension.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 	 *
28 28
 	 * @param bool $critical
29 29
 	 * @param DistributionPoint ...$distribution_points
30
+	 * @param DistributionPoint[] $distribution_points
30 31
 	 */
31 32
 	public function __construct($critical, 
32 33
 			DistributionPoint ...$distribution_points) {
Please login to merge, or discard this patch.
lib/X509/Certificate/Extension/ExtendedKeyUsageExtension.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -57,6 +57,7 @@  discard block
 block discarded – undo
57 57
 	 *
58 58
 	 * @param bool $critical
59 59
 	 * @param string ...$purposes
60
+	 * @param string[] $purposes
60 61
 	 */
61 62
 	public function __construct($critical, ...$purposes) {
62 63
 		parent::__construct(self::OID_EXT_KEY_USAGE, $critical);
@@ -77,6 +78,7 @@  discard block
 block discarded – undo
77 78
 	 * If multiple purposes are checked, all must be present.
78 79
 	 *
79 80
 	 * @param string ...$oids
81
+	 * @param string[] $oids
80 82
 	 * @return bool
81 83
 	 */
82 84
 	public function has(...$oids) {
Please login to merge, or discard this patch.
lib/X509/Certificate/Extension/NameConstraints/GeneralSubtrees.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
 	 * Constructor
26 26
 	 *
27 27
 	 * @param GeneralSubtree ...$subtrees
28
+	 * @param GeneralSubtree[] $subtrees
28 29
 	 */
29 30
 	public function __construct(GeneralSubtree ...$subtrees) {
30 31
 		$this->_subtrees = $subtrees;
Please login to merge, or discard this patch.
lib/X509/Certificate/Extension/PolicyMappingsExtension.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
 	 *
29 29
 	 * @param string $critical
30 30
 	 * @param PolicyMapping ...$mappings One or more PolicyMapping objects
31
+	 * @param PolicyMapping[] $mappings
31 32
 	 */
32 33
 	public function __construct($critical, PolicyMapping ...$mappings) {
33 34
 		parent::__construct(self::OID_POLICY_MAPPINGS, $critical);
Please login to merge, or discard this patch.