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
Branch develop (9ca8cc)
by Baptiste
03:18
created

Server

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

4 Methods

Rating   Name   Duplication   Size   Complexity  
cpu() 0 1 ?
memory() 0 1 ?
processes() 0 1 ?
loadAverage() 0 1 ?
1
<?php
2
declare(strict_types = 1);
3
4
namespace Innmind\Server\Status;
5
6
use Innmind\Server\Status\Server\{
7
    Cpu,
8
    Memory,
9
    Processes,
10
    LoadAverage
11
};
12
13
interface Server
14
{
15
    public function cpu(): Cpu;
16
    public function memory(): Memory;
17
    public function processes(): Processes;
18
    public function loadAverage(): LoadAverage;
19
}
20