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:54
created

Plugin   A

Complexity

Total Complexity 9

Size/Duplication

Total Lines 65
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 9
lcom 0
cbo 1
dl 0
loc 65
rs 10
c 0
b 0
f 0

9 Methods

Rating   Name   Duplication   Size   Complexity  
A addPlugin() 0 3 1
A retrievePlugin() 0 3 1
A listAllPlugins() 0 3 1
A listPluginsPerApi() 0 3 1
A updatePlugin() 0 3 1
A updateOrAddPlugin() 0 3 1
A deletePlugin() 0 3 1
A retrieveEnabledPlugin() 0 3 1
A retrievePluginSchema() 0 3 1
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\AbstractApi;
15
16
/**
17
 * plugin
18
 *
19
 * @author VEBER Arnaud <https://github.com/VEBERArnaud>
20
 */
21
class Plugin extends AbstractApi
22
{
23
    /**
24
     * add plugin
25
     */
26
    public function addPlugin()
27
    {
28
    }
29
30
    /**
31
     * retrieve plugin
32
     */
33
    public function retrievePlugin()
34
    {
35
    }
36
37
    /**
38
     * list all plugins
39
     */
40
    public function listAllPlugins()
41
    {
42
    }
43
44
    /**
45
     * list plugins per api
46
     */
47
    public function listPluginsPerApi()
48
    {
49
    }
50
51
    /**
52
     * update plugin
53
     */
54
    public function updatePlugin()
55
    {
56
    }
57
58
    /**
59
     * update or add plugin
60
     */
61
    public function updateOrAddPlugin()
62
    {
63
    }
64
65
    /**
66
     * delete plugin
67
     */
68
    public function deletePlugin()
69
    {
70
    }
71
72
    /**
73
     * retrieve enabled plugin
74
     */
75
    public function retrieveEnabledPlugin()
76
    {
77
    }
78
79
    /**
80
     * retrieve plugin schema
81
     */
82
    public function retrievePluginSchema()
83
    {
84
    }
85
}
86