Passed
Pull Request — master (#112)
by Mathieu
02:16 queued 45s
created

EventsGenerator.generate   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 2
c 0
b 0
f 0
rs 10
cc 1
1
import {EventType} from './Event.entity';
2
import {User} from '../HumanResource/User/User.entity';
3
4
export class EventsGenerator {
5
  public async generate(user: User, from: Date, to: Date, type: EventType) {
6
    return '';
7
  }
8
}
9