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.

JavaSkeleton::dependsOn()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
namespace Kunstmaan\Skylab\Skeleton;
3
4
/**
5
 * ApacheSkeleton
6
 */
7
class JavaSkeleton extends AbstractSkeleton
8
{
9
10
    const NAME = "smartcms";
11
12
    /**
13
     * @return string
14
     */
15
    public function getName()
16
    {
17
        return self::NAME;
18
    }
19
20
    /**
21
     * @param \ArrayObject $project
22
     *
23
     * @return mixed
24
     */
25
    public function create(\ArrayObject $project)
26
    {
27
        // TODO: Implement create() method.
28
    }
29
30
    /**
31
     * @return mixed
32
     */
33
    public function preMaintenance()
34
    {
35
        // TODO: Implement preMaintenance() method.
36
    }
37
38
    /**
39
     * @return mixed
40
     */
41
    public function postMaintenance()
42
    {
43
        // TODO: Implement postMaintenance() method.
44
    }
45
46
    /**
47
     * @param \ArrayObject $project
48
     *
49
     * @return mixed
50
     */
51
    public function maintenance(\ArrayObject $project)
52
    {
53
        // TODO: Implement maintenance() method.
54
    }
55
56
    /**
57
     * @param \ArrayObject $project
58
     *
59
     * @return mixed
60
     */
61
    public function preBackup(\ArrayObject $project)
62
    {
63
        // TODO: Implement preBackup() method.
64
    }
65
66
    /**
67
     * @param \ArrayObject $project
68
     *
69
     * @return mixed
70
     */
71
    public function postBackup(\ArrayObject $project)
72
    {
73
        // TODO: Implement postBackup() method.
74
    }
75
76
    /**
77
     * @param \ArrayObject $project
78
     *
79
     * @return mixed
80
     */
81
    public function preRemove(\ArrayObject $project)
82
    {
83
        // TODO: Implement preRemove() method.
84
    }
85
86
    /**
87
     * @param \ArrayObject $project
88
     *
89
     * @return mixed
90
     */
91
    public function postRemove(\ArrayObject $project)
92
    {
93
        // TODO: Implement postRemove() method.
94
    }
95
96
    /**
97
     * @return string[]
98
     */
99
    public function dependsOn()
100
    {
101
        return array("base", "apache", "tomcat");
102
    }
103
104
}
105