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 ( ce507f...5e3b1d )
by Joni
04:09
created

OtherPrimesInfoParameter::fromJSONValue()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 2

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 6
ccs 4
cts 4
cp 1
rs 9.4285
cc 2
eloc 4
nc 2
nop 1
crap 2
1
<?php
2
3
namespace JWX\JWK\Parameter;
4
5
use JWX\Parameter\Feature\ArrayParameterValue;
6
7
8
/**
9
 * Implements 'Other Primes Info' parameter.
10
 *
11
 * @todo Implement the underlying data structure
12
 * @link https://tools.ietf.org/html/rfc7518#section-6.3.2.7
13
 */
14
class OtherPrimesInfoParameter extends JWKParameter
15
{
16
	use ArrayParameterValue;
17
	
18
	/**
19
	 * Constructor
20
	 *
21
	 * @param array[] ...$primes
22
	 */
23 2
	public function __construct(...$primes) {
24 2
		parent::__construct(self::PARAM_OTHER_PRIMES_INFO, $primes);
25 2
	}
26
}
27