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.

EcdSa::verify()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
rs 10
cc 1
eloc 1
nc 1
nop 3
1
<?php
2
3
namespace Emarref\Jwt\Algorithm;
4
5
abstract class EcdSa implements AsymmetricInterface
6
{
7
    public function __construct()
8
    {
9
        throw new \RuntimeException('Not implemented');
10
    }
11
12
    /**
13
     * @param string          $value
14
     * @param string|resource $privateKey
15
     * @return string
16
     */
17
    public function sign($value, $privateKey)
18
    {
19
        // Noop
20
    }
21
22
    /**
23
     * @param string          $value
24
     * @param string          $signature
25
     * @param string|resource $publicKey
26
     * @return boolean
27
     */
28
    public function verify($value, $signature, $publicKey)
29
    {
30
        // Noop
31
    }
32
}
33