Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 50% |
Changes | 0 |
1 | <?php |
||
5 | class SkeletonClass |
||
6 | { |
||
7 | /** |
||
8 | * Create a new Skeleton Instance |
||
9 | */ |
||
10 | 1 | public function __construct() |
|
11 | { |
||
12 | // constructor body |
||
13 | 1 | } |
|
14 | |||
15 | /** |
||
16 | * Friendly welcome |
||
17 | * |
||
18 | * @param string $phrase Phrase to return |
||
19 | * |
||
20 | * @return string Returns the phrase passed in |
||
21 | */ |
||
22 | public function echoPhrase($phrase) |
||
25 | } |
||
26 | } |
||
27 |