Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 19 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 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 |