PluginConfig   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 4
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 22
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getImagePath() 0 4 1
A getCsvPath() 0 4 1
A getGroupName() 0 4 1
A getDefaultTaxId() 0 4 1
1
<?php
2
3
namespace TEiling\Scd16\Config;
4
5
class PluginConfig implements ConfigInterface
6
{
7
    public function getImagePath()
8
    {
9
        // TODO: Implement getImagePath() method.
10
    }
11
12
    public function getCsvPath()
13
    {
14
        // TODO: Implement getCsvPath() method.
15
    }
16
17
    public function getGroupName()
18
    {
19
        // TODO: Implement getGroupName() method.
20
    }
21
22
    public function getDefaultTaxId()
23
    {
24
        // TODO: Implement getDefaultTaxId() method.
25
    }
26
}
27