PluginConfig::getDefaultTaxId()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 1
nc 1
nop 0
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