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.
It seems like $num can also be of type resource; however, parameter $num of Sop\JWX\Util\BigInt::__construct() does only seem to accept GMP, maybe add an additional type check?
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-type annotation
42
return new self(/** @scrutinizer ignore-type */ $num);
Loading history...
43
}
44
45
/**
46
* Initialize from a base256 number.
47
*
48
* Base64 number is an octet string of big endian, most significant word
49
* first integer.
50
*/
51
33
public static function fromBase256(string $octets): self