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 ( eb5c8e...f4ded9 )
by Joni
06:39
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/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/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.
lib/X509/Certificate/TBSCertificate.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -356,6 +356,7 @@  discard block
 block discarded – undo
356 356
 	 * Get self with extensions added.
357 357
 	 *
358 358
 	 * @param Extension ...$exts One or more Extension objects
359
+	 * @param Extension[] $exts
359 360
 	 * @return self
360 361
 	 */
361 362
 	public function withAdditionalExtensions(Extension ...$exts) {
@@ -397,7 +398,7 @@  discard block
 block discarded – undo
397 398
 	/**
398 399
 	 * Get serial number.
399 400
 	 *
400
-	 * @return int|string Base 10 integer
401
+	 * @return integer Base 10 integer
401 402
 	 */
402 403
 	public function serialNumber() {
403 404
 		if (!$this->hasSerialNumber()) {
Please login to merge, or discard this patch.
lib/X509/CertificationPath/PathValidation/PathValidator.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -50,6 +50,7 @@
 block discarded – undo
50 50
 	 * @param Crypto $crypto
51 51
 	 * @param PathValidationConfig $config
52 52
 	 * @param Certificate ...$certificates
53
+	 * @param Certificate[] $certificates
53 54
 	 */
54 55
 	public function __construct(Crypto $crypto, PathValidationConfig $config, 
55 56
 			Certificate ...$certificates) {
Please login to merge, or discard this patch.
lib/X509/CertificationRequest/CertificationRequestInfo.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -197,7 +197,6 @@
 block discarded – undo
197 197
 	 *
198 198
 	 * @param Crypto $crypto Crypto engine
199 199
 	 * @param SignatureAlgorithmIdentifier $algo Algorithm used for signing
200
-	 * @param PrivateKey $private_key Private key used for signing
201 200
 	 * @return CertificationRequest
202 201
 	 */
203 202
 	public function sign(Crypto $crypto, SignatureAlgorithmIdentifier $algo, 
Please login to merge, or discard this patch.
lib/X509/GeneralName/GeneralNames.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
 	 * Constructor
29 29
 	 *
30 30
 	 * @param GeneralName ...$names One or more GeneralName objects
31
+	 * @param GeneralName[] $names
31 32
 	 */
32 33
 	public function __construct(GeneralName ...$names) {
33 34
 		$this->_names = $names;
Please login to merge, or discard this patch.
lib/X509/Certificate/Extension/PolicyMappings/PolicyMapping.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 	 * Constructor
33 33
 	 *
34 34
 	 * @param string $issuer_policy OID of the issuer policy
35
-	 * @param stirng $subject_policy OID of the subject policy
35
+	 * @param string $subject_policy OID of the subject policy
36 36
 	 */
37 37
 	public function __construct($issuer_policy, $subject_policy) {
38 38
 		$this->_issuerDomainPolicy = $issuer_policy;
Please login to merge, or discard this patch.