js/module/siteapp.plugin.js   A
last analyzed

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 11
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 0
c 1
b 0
f 0
nc 1
dl 0
loc 11
rs 10
wmc 0
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
noi 1
1
/**
2
 * [Siteapp] - multi-purpose frontend application
3
 * 
4
 * Siteapp Plugin Abstract
5
 * 
6
 * alias class for Siteapp.Module
7
 *     
8
 * @package     [Siteapp]
9
 * @subpackage  [Siteapp] module
10
 * @author      Björn Bartels <[email protected]>
11
 * @link        https://gitlab.bjoernbartels.earth/groups/themes
12
 * @license     http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
13
 * @copyright   copyright (c) 2016 Björn Bartels <[email protected]>
14
 * 
15
 * @namespace   Siteapp
16
 * @see         Siteapp.Module
17
 * @module      Siteapp.Plugin
18
 * @abstract
19
 */
20
21
import Module from './siteapp.module';
22
23
/**
24
 * Module plugin abstract.
25
 * @module Siteapp.Plugin
26
 */
27
const Plugin = class Plugin extends Module {
0 ignored issues
show
Bug introduced by
The variable Module seems to be never declared. If this is a global, consider adding a /** global: Module */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
28
29
}
30
31
export default Plugin;