Completed
Push — master ( 5a3952...8a8d0e )
by Alexander
01:24
created
src/Collection/Collection.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.