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
Pull Request — master (#33)
by Cees-Jan
12:55 queued 10:50
created

RepositoryKeyInterface

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 12
ccs 0
cts 0
cp 0
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
key() 0 1 ?
fingerprint() 0 1 ?
1
<?php
2
declare(strict_types=1);
3
4
namespace WyriHaximus\Travis\Resource;
5
6
use WyriHaximus\ApiClient\Resource\ResourceInterface;
7
8
interface RepositoryKeyInterface extends ResourceInterface
9
{
10
    /**
11
     * @return string
12
     */
13
    public function key() : string;
14
15
    /**
16
     * @return string
17
     */
18
    public function fingerprint() : string;
19
}
20