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.

Audience   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 12
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getName() 0 4 1
1
<?php
2
3
namespace Emarref\Jwt\Claim;
4
5
/**
6
 * "aud" (Audience) Claim
7
 *
8
 * The aud (audience) claim identifies the recipients that the JWT is intended for. Each principal intended to process
9
 * the JWT MUST identify itself with a value in the audience claim. If the principal processing the claim does not
10
 * identify itself with a value in the aud claim when this claim is present, then the JWT MUST be rejected. In the
11
 * general case, the aud value is an array of case-sensitive strings, each containing a StringOrURI value. In the
12
 * special case when the JWT has one audience, the aud value MAY be a single case-sensitive string containing a
13
 * StringOrURI value. The interpretation of audience values is generally application specific. Use of this claim is
14
 * OPTIONAL.
15
 */
16
class Audience extends AbstractClaim
17
{
18
    const NAME = 'aud';
19
20
    /**
21
     * @return string
22
     */
23
    public function getName()
24
    {
25
        return self::NAME;
26
    }
27
}
28