Test Failed
Push — develop ( 424bfb...c8c23d )
by Endre
02:45
created

src/Application/Model/Factory/Factory.ts   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 7
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 5
mnd 0
bc 0
fnc 1
dl 0
loc 7
bpm 0
cpm 1
noi 0
c 0
b 0
f 0
rs 10

1 Function

Rating   Name   Duplication   Size   Complexity  
A Factory.createApplicationModel 0 2 1
1
import ApplicationModel from '../ApplicationModel';
2
3
export default class Factory {
4
  public createApplicationModel(): ApplicationModel {
5
    return new ApplicationModel();
6
  }
7
}