@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | { |
47 | 47 | $this->name = $name; |
48 | 48 | $this->path = $path; |
49 | - $this->metaData = new MetaData($path . '/' . $name . 'meta.edb'); |
|
49 | + $this->metaData = new MetaData($path.'/'.$name.'meta.edb'); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | |
@@ -147,13 +147,13 @@ discard block |
||
147 | 147 | |
148 | 148 | private function getCollectionFilePath() |
149 | 149 | { |
150 | - return $this->path . '/' . $this->name . '.edb'; |
|
150 | + return $this->path.'/'.$this->name.'.edb'; |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | |
154 | 154 | |
155 | 155 | private function createId(): string |
156 | 156 | { |
157 | - return $id = time() . '-' . mt_rand(1000, 9999); |
|
157 | + return $id = time().'-'.mt_rand(1000, 9999); |
|
158 | 158 | } |
159 | 159 | } |