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 (#18)
by Cees-Jan
02:38 queued 30s
created

JobInterface::repositoryId()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 1
ccs 0
cts 0
cp 0
1
<?php
2
declare(strict_types=1);
3
4
namespace WyriHaximus\Travis\Resource;
5
6
use DateTimeInterface;
7
8
/**
9
 * @link https://docs.travis-ci.com/api#jobs
10
 */
11
interface JobInterface extends ResourceInterface
12
{
13
    public function id() : int;
14
15
    public function buildId() : int;
16
17
    public function repositoryId() : int;
18
19
    public function commitId() : int;
20
21
    public function logId() : int;
22
23
    public function number() : string;
24
25
    public function config() : array;
26
27
    public function state() : string;
28
29
    public function startedAt() : DateTimeInterface;
30
31
    public function finishedAt() : DateTimeInterface;
32
33
    public function queue() : string;
34
35
    public function allowFailure() : bool;
36
37
    public function annotationIds() : array;
38
}
39