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 (#2)
by VEBER
01:58
created

Consumer::deleteConsumer()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
/*
4
 * This file is part of the KongAdminApi package.
5
 *
6
 * (c) Unikorp <https://github.com/unikorp>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Unikorp\KongAdminApi\Api;
13
14
use Unikorp\KongAdminApi\ApiAbstract;
15
16
/**
17
 * consumer
18
 *
19
 * @author VEBER Arnaud <https://github.com/VEBERArnaud>
20
 */
21
class Consumer extends ApiAbstract
22
{
23
    /**
24
     * create consumer
25
     */
26
    public function createConsumer()
27
    {
28
    }
29
30
    /**
31
     * retrieve consumer
32
     */
33
    public function retrieveConsumer()
34
    {
35
    }
36
37
    /**
38
     * list consumers
39
     */
40
    public function listConsumers()
41
    {
42
    }
43
44
    /**
45
     * update consumer
46
     */
47
    public function updateConsumer()
48
    {
49
    }
50
51
    /**
52
     * update or create consumer
53
     */
54
    public function updateOrCreateConsumer()
55
    {
56
    }
57
58
    /**
59
     * delete consumer
60
     */
61
    public function deleteConsumer()
62
    {
63
    }
64
}
65