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

Api::updateApi()   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
use Unikorp\KongAdminApi\Client;
16
17
/**
18
 * api
19
 *
20
 * @author VEBER Arnaud <https://github.com/VEBERArnaud>
21
 */
22
class Api extends ApiAbstract
23
{
24
    /**
25
     * add api
26
     */
27
    public function addApi()
28
    {
29
    }
30
31
    /**
32
     * retrieve api
33
     */
34
    public function retrieveApi()
35
    {
36
    }
37
38
    /**
39
     * list apis
40
     */
41
    public function listApis()
42
    {
43
    }
44
45
    /**
46
     * update api
47
     */
48
    public function updateApi()
49
    {
50
    }
51
52
    /**
53
     * update or create api
54
     */
55
    public function updateOrCreateApi()
56
    {
57
    }
58
59
    /**
60
     * delete api
61
     */
62
    public function deleteApi()
63
    {
64
    }
65
}
66