Passed
Pull Request — master (#35)
by
unknown
14:35 queued 06:11
created

src/view/frontend/web/js/view/payment/pagantis.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 19
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 12
dl 0
loc 19
rs 10
c 0
b 0
f 0
mnd 0
bc 0
fnc 1
bpm 0
cpm 1
noi 0
1
define(
2
    [
3
        'uiComponent',
4
        'Magento_Checkout/js/model/payment/renderer-list'
5
    ],
6
    function (
7
        Component,
8
        rendererList
9
    ) {
10
        'use strict';
11
        rendererList.push(
12
            {
13
                type: 'pagantis',
14
                component: 'Pagantis_Pagantis/js/view/payment/method-renderer/pagantis'
15
            }
16
        );
17
        return Component.extend({});
18
    }
19
);
20