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