Months   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 22
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getSourceData() 0 17 1
1
<?php
2
3
namespace Magium\Configuration\Source\Datetime;
4
5
use Magium\Configuration\Source\SourceInterface;
6
7
class Months implements SourceInterface
8
{
9
10
    public function getSourceData()
11
    {
12
        return [
13
            'January',
14
            'February',
15
            'March',
16
            'April',
17
            'May',
18
            'June',
19
            'July',
20
            'August',
21
            'September',
22
            'October',
23
            'November',
24
            'December',
25
        ];
26
    }
27
28
}
29