Completed
Pull Request — final (#318)
by Georges
04:13 queued 01:37
created
src/phpFastCache/Cache/DriverBaseTrait.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
         if (is_array($config_name)) {
61 61
             $this->config = array_merge($this->config, $config_name);
62 62
         } else {
63
-            $this->config[ $config_name ] = $value;
63
+            $this->config[$config_name] = $value;
64 64
         }
65 65
     }
66 66
 
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
      */
180 180
     public function driverUnwrapData(array $wrapper)
181 181
     {
182
-        return $wrapper[ self::DRIVER_DATA_WRAPPER_INDEX ];
182
+        return $wrapper[self::DRIVER_DATA_WRAPPER_INDEX];
183 183
     }
184 184
 
185 185
     /**
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
      */
189 189
     public function driverUnwrapTags(array $wrapper)
190 190
     {
191
-        return $wrapper[ self::DRIVER_TAGS_WRAPPER_INDEX ];
191
+        return $wrapper[self::DRIVER_TAGS_WRAPPER_INDEX];
192 192
     }
193 193
 
194 194
 
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
      */
199 199
     public function driverUnwrapTime(array $wrapper)
200 200
     {
201
-        return $wrapper[ self::DRIVER_TIME_WRAPPER_INDEX ];
201
+        return $wrapper[self::DRIVER_TIME_WRAPPER_INDEX];
202 202
     }
203 203
 
204 204
     /**
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
          * on tags item, it can leads
224 224
          * to an infinite recursive calls
225 225
          */
226
-        if(strpos($item->getKey(), self::DRIVER_TAGS_KEY_PREFIX ) === 0){
226
+        if (strpos($item->getKey(), self::DRIVER_TAGS_KEY_PREFIX) === 0) {
227 227
             throw new \LogicException('Trying to set tag(s) to an Tag item index: ' . $item->getKey());
228 228
         }
229 229
 
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
         foreach ($tagsItems as $tagsItem) {
267 267
             $data = (array) $tagsItem->get();
268 268
 
269
-            unset($data[ $item->getKey() ]);
269
+            unset($data[$item->getKey()]);
270 270
             $tagsItem->set($data);
271 271
 
272 272
             /**
Please login to merge, or discard this patch.