drph4nt0m / avbot

Class methods should utilize this JS-0105
Anti-pattern
Minor
a year agoa year old
Expected 'this' to be used by class method 'getProperty'
 4
 5@singleton()
 6export class EnvPropertyResolutionEngine implements IPropertyResolutionEngine {
 7    public getProperty(prop: string): PropertyTYpe { 8        return process.env[prop] ?? null;
 9    }
10}