Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
private static getContextCreator(container): WsContextCreator {
return new WsContextCreator(
new WsProxy(),
new ExceptionFiltersContext(),
new PipesContextCreator(),
new PipesConsumer(),
new GuardsContextCreator(container),
new GuardsConsumer(),
new InterceptorsContextCreator(container),
new InterceptorsConsumer(),
);
}
}
private getContextCreator(container: NestContainer): WsContextCreator {
return new WsContextCreator(
new WsProxy(),
new ExceptionFiltersContext(container),
new PipesContextCreator(container),
new PipesConsumer(),
new GuardsContextCreator(container),
new GuardsConsumer(),
new InterceptorsContextCreator(container),
new InterceptorsConsumer(),
);
}
}
private getContextCreator(container): WsContextCreator {
return new WsContextCreator(
new WsProxy(),
new ExceptionFiltersContext(),
new PipesContextCreator(),
new PipesConsumer(),
new GuardsContextCreator(container),
new GuardsConsumer(),
new InterceptorsContextCreator(container),
new InterceptorsConsumer(),
);
}
}