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
Push — master ( 0c41c7...89cce8 )
by Cees-Jan
03:05
created

ClientInterface

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
user() 0 1 ?
1
<?php declare(strict_types=1);
2
3
namespace ApiClients\Client\Github;
4
5
use ApiClients\Client\Github\Resource\UserInterface;
6
use React\EventLoop\Factory;
7
use React\EventLoop\LoopInterface;
8
use function Clue\React\Block\await;
9
10
interface ClientInterface
11
{
12
    public function user(string $user): UserInterface;
13
}
14