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::connections()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
ccs 0
cts 0
cp 0
c 0
b 0
f 0
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