ThemesClass   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 2
Bugs 0 Features 1
Metric Value
wmc 2
c 2
b 0
f 1
lcom 0
cbo 0
dl 0
loc 23
ccs 0
cts 7
cp 0
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A echoPhrase() 0 5 1
1
<?php
2
namespace redsevensquared\themes;
3
4
class ThemesClass
5
{
6
    /**
7
     * Create a new Skeleton Instance
8
     */
9
    public function __construct()
10
    {
11
        // constructor body
12
    }
13
14
    /**
15
     * Friendly welcome
16
     *
17
     * @param string $phrase Phrase to return
18
     *
19
     * @return string Returns the phrase passed in
20
     */
21
    public function echoPhrase($phrase)
22
    {
23
        // return of $phrase, not a turn of phrase
24
        return $phrase;
25
    }
26
}
27