Test Setup Failed
Push — master ( e98e25...a896f1 )
by
unknown
03:45
created

src/Oro/Bundle/ShoppingListBundle/Resources/public/js/app/modules/shoppinglist-module.js   A

Complexity

Total Complexity 2
Complexity/F 1

Size

Lines of Code 12
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 0
wmc 2
nc 1
mnd 0
bc 2
fnc 2
dl 0
loc 12
rs 10
bpm 1
cpm 1
noi 0
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A shoppinglist-module.js ➔ define 0 10 1
1
define([
2
    'oroui/js/app/controllers/base/controller'
3
], function(BaseController) {
4
    'use strict';
5
6
    /**
7
     * Init Widget Manager's handlers and listeners
8
     */
9
    BaseController.loadBeforeAction([
10
        'oroshoppinglist/js/shoppinglist-request-quote-confirmation'
11
    ], function() {});
12
});
13