Use camel case everywhere
[e-mobility-charging-stations-simulator.git] / src / performance / storage / Storage.ts
index ff299fac5319f2d2fdb0ea9599c2cd72f6cf0af8..db33a694777e5efe0e415bf96c2874b7ad434cba 100644 (file)
@@ -8,12 +8,12 @@ import Utils from '../../utils/Utils';
 import logger from '../../utils/Logger';
 
 export abstract class Storage {
-  protected readonly storageURI: URL;
+  protected readonly storageUri: URL;
   protected readonly logPrefix: string;
   protected dbName: string;
 
-  constructor(storageURI: string, logPrefix: string) {
-    this.storageURI = new URL(storageURI);
+  constructor(storageUri: string, logPrefix: string) {
+    this.storageUri = new URL(storageUri);
     this.logPrefix = logPrefix;
   }