Completed
Push — master ( 0622f1...018a2f )
by Dmitry
04:34
created

SvdsTariffManager   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 3
Bugs 0 Features 1
Metric Value
wmc 1
c 3
b 0
f 1
lcom 0
cbo 1
dl 0
loc 12
ccs 0
cts 6
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFormOptions() 0 6 1
1
<?php
2
3
namespace hipanel\modules\finance\logic;
4
5
use hipanel\modules\finance\forms\SvdsTariffForm;
6
7
class SvdsTariffManager extends VdsTariffManager
8
{
9
    /** @inheritdoc */
10
    public $type = 'svds';
11
12
    protected function getFormOptions()
13
    {
14
        return array_merge([
15
            'class' => SvdsTariffForm::class
16
        ], parent::getFormOptions());
17
    }
18
}
19