Completed
Push — develop ( 9a303b...b58bed )
by Kevin
06:57 queued 04:05
created

HttpHttps   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
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 12
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getSourceData() 0 7 1
1
<?php
2
3
namespace Magium\Configuration\Source\Switches;
4
5
use Magium\Configuration\Source\SourceInterface;
6
7
class HttpHttps implements SourceInterface
8
{
9
10
    public function getSourceData()
11
    {
12
        return [
13
            'http'   => 'HTTP',
14
            'https'   => 'HTTPS',
15
        ];
16
    }
17
18
}
19