Months::getSourceData()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 17

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 17
ccs 0
cts 2
cp 0
rs 9.7
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 2
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