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 ( b7e0a9...e2927f )
by Cees-Jan
08:19
created

ClientInterface

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
overview() 0 1 ?
queues() 0 1 ?
connections() 0 1 ?
1
<?php
2
declare(strict_types=1);
3
4
namespace ApiClients\Client\RabbitMQ\Management;
5
6
use ApiClients\Client\RabbitMQ\Management\Resource\OverviewInterface;
7
use function Clue\React\Block\await;
8
use function React\Promise\resolve;
9
10
interface ClientInterface
11
{
12
    /**
13
     * @return OverviewInterface
14
     */
15
    public function overview(): OverviewInterface;
16
17
    /**
18
     * @return array
19
     */
20
    public function queues(): array;
21
22
    /**
23
     * @return array
24
     */
25
    public function connections(): array;
26
}
27