Completed
Push — V6 ( bb5c65...622987 )
by Georges
02:29
created
src/phpFastCache/Core/Pool/DriverBaseTrait.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
             $tmpFilename = realpath(dirname($file) . '/tmp_' . md5(
112 112
                 str_shuffle(uniqid($this->getDriverName(), false))
113 113
                 . str_shuffle(uniqid($this->getDriverName(), false))
114
-              ));
114
+                ));
115 115
 
116 116
             $f = fopen($tmpFilename, 'w+');
117 117
             flock($f, LOCK_EX);
@@ -196,9 +196,9 @@  discard block
 block discarded – undo
196 196
     public function driverPreWrap(ExtendedCacheItemInterface $item)
197 197
     {
198 198
         $wrap = [
199
-          self::DRIVER_DATA_WRAPPER_INDEX => $item->get(),
200
-          self::DRIVER_TAGS_WRAPPER_INDEX => $item->getTags(),
201
-          self::DRIVER_EDATE_WRAPPER_INDEX => $item->getExpirationDate(),
199
+            self::DRIVER_DATA_WRAPPER_INDEX => $item->get(),
200
+            self::DRIVER_TAGS_WRAPPER_INDEX => $item->getTags(),
201
+            self::DRIVER_EDATE_WRAPPER_INDEX => $item->getExpirationDate(),
202 202
         ];
203 203
 
204 204
         if($this->config['itemDetailedDate']){
Please login to merge, or discard this patch.