SkeletonClass::echoPhrase()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
namespace League\Skeleton;
4
5
class SkeletonClass
6
{
7
    /**
8
     * Create a new Skeleton Instance
9
     */
10
    public function __construct()
11
    {
12
        // constructor body
13
    }
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)
23
    {
24
        return $phrase;
25
    }
26
}
27