Skip to content

Commit 48a38c7

Browse files
committed
codestyle fixed
1 parent f461180 commit 48a38c7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/shared/events/events.gateway.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ export class EventsGateway {
88
@WebSocketServer()
99
server: Server;
1010

11-
buildCreated(build: BuildDto) {
11+
buildCreated(build: BuildDto): void {
1212
this.server.emit('build_created', build);
1313
}
1414

15-
buildFinished(build: BuildDto) {
15+
buildFinished(build: BuildDto): void {
1616
this.server.emit('build_finished', build);
1717
}
1818

19-
buildUpdated(build: BuildDto) {
19+
buildUpdated(build: BuildDto): void {
2020
this.server.emit('build_updated', build);
2121
}
2222

23-
newTestRun(testRun: TestRun) {
23+
newTestRun(testRun: TestRun): void {
2424
this.server.emit('testRun_created', testRun);
2525
}
2626
}

0 commit comments

Comments
 (0)