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

CacheInterface

Size/Duplication

Total Lines 27
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

5 Methods

Rating   Name   Duplication   Size   Complexity  
repositoryId() 0 1 ?
size() 0 1 ?
slug() 0 1 ?
branch() 0 1 ?
lastModified() 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 CacheInterface extends ResourceInterface
9
{
10
    /**
11
     * @return int
12
     */
13
    public function repositoryId() : int;
14
15
    /**
16
     * @return int
17
     */
18
    public function size() : int;
19
20
    /**
21
     * @return string
22
     */
23
    public function slug() : string;
24
25
    /**
26
     * @return string
27
     */
28
    public function branch() : string;
29
30
    /**
31
     * @return DateTimeInterface
32
     */
33
    public function lastModified() : DateTimeInterface;
34
}
35