@@ -83,8 +83,8 @@ |
||
| 83 | 83 | |
| 84 | 84 | $files = new RecursiveIteratorIterator |
| 85 | 85 | ( |
| 86 | - new RecursiveDirectoryIterator($source, RecursiveDirectoryIterator::SKIP_DOTS), |
|
| 87 | - RecursiveIteratorIterator::CHILD_FIRST |
|
| 86 | + new RecursiveDirectoryIterator($source, RecursiveDirectoryIterator::SKIP_DOTS), |
|
| 87 | + RecursiveIteratorIterator::CHILD_FIRST |
|
| 88 | 88 | ); |
| 89 | 89 | |
| 90 | 90 | foreach ($files as $fileinfo) { |
@@ -139,10 +139,10 @@ discard block |
||
| 139 | 139 | { |
| 140 | 140 | try { |
| 141 | 141 | $server = isset($this->config[ 'ssdb' ]) ? $this->config[ 'ssdb' ] : [ |
| 142 | - 'host' => "127.0.0.1", |
|
| 143 | - 'port' => 8888, |
|
| 144 | - 'password' => '', |
|
| 145 | - 'timeout' => 2000, |
|
| 142 | + 'host' => "127.0.0.1", |
|
| 143 | + 'port' => 8888, |
|
| 144 | + 'password' => '', |
|
| 145 | + 'timeout' => 2000, |
|
| 146 | 146 | ]; |
| 147 | 147 | |
| 148 | 148 | $host = $server[ 'host' ]; |
@@ -183,9 +183,9 @@ discard block |
||
| 183 | 183 | * using hardcoded offset of pair key-value :-( |
| 184 | 184 | */ |
| 185 | 185 | $stat->setInfo(sprintf("Ssdb-server v%s with a total of %s call(s).\n For more information see RawData.", $info[ 2 ], $info[ 6 ])) |
| 186 | - ->setRawData($info) |
|
| 187 | - ->setData(implode(', ', array_keys($this->itemInstances))) |
|
| 188 | - ->setSize($this->instance->dbsize()); |
|
| 186 | + ->setRawData($info) |
|
| 187 | + ->setData(implode(', ', array_keys($this->itemInstances))) |
|
| 188 | + ->setSize($this->instance->dbsize()); |
|
| 189 | 189 | |
| 190 | 190 | return $stat; |
| 191 | 191 | } |
@@ -159,9 +159,9 @@ |
||
| 159 | 159 | public function driverPreWrap(ExtendedCacheItemInterface $item) |
| 160 | 160 | { |
| 161 | 161 | $wrap = [ |
| 162 | - self::DRIVER_DATA_WRAPPER_INDEX => $item->get(), |
|
| 163 | - self::DRIVER_TAGS_WRAPPER_INDEX => $item->getTags(), |
|
| 164 | - self::DRIVER_EDATE_WRAPPER_INDEX => $item->getExpirationDate(), |
|
| 162 | + self::DRIVER_DATA_WRAPPER_INDEX => $item->get(), |
|
| 163 | + self::DRIVER_TAGS_WRAPPER_INDEX => $item->getTags(), |
|
| 164 | + self::DRIVER_EDATE_WRAPPER_INDEX => $item->getExpirationDate(), |
|
| 165 | 165 | ]; |
| 166 | 166 | |
| 167 | 167 | if($this->config['itemDetailedDate']){ |
@@ -27,7 +27,7 @@ |
||
| 27 | 27 | return true; |
| 28 | 28 | } else if (constant($CONSTANT_NAME) !== $driverName) { |
| 29 | 29 | trigger_error('Memcache collision detected, you used both Memcache and Memcached driver in your script, this may leads to unexpected behaviours', |
| 30 | - E_USER_WARNING); |
|
| 30 | + E_USER_WARNING); |
|
| 31 | 31 | |
| 32 | 32 | return false; |
| 33 | 33 | } |
@@ -46,6 +46,6 @@ |
||
| 46 | 46 | }); |
| 47 | 47 | |
| 48 | 48 | if ((!defined('PFC_IGNORE_COMPOSER_WARNING') || !PFC_IGNORE_COMPOSER_WARNING) && class_exists('Composer\Autoload\ClassLoader')) { |
| 49 | - trigger_error('Your project already makes use of Composer. You SHOULD use the composer dependency "phpfastcache/phpfastcache" instead of hard-autoloading.', |
|
| 49 | + trigger_error('Your project already makes use of Composer. You SHOULD use the composer dependency "phpfastcache/phpfastcache" instead of hard-autoloading.', |
|
| 50 | 50 | E_USER_WARNING); |
| 51 | 51 | } |
| 52 | 52 | \ No newline at end of file |
@@ -202,9 +202,9 @@ discard block |
||
| 202 | 202 | protected static function cleanFileName($filename) |
| 203 | 203 | { |
| 204 | 204 | $regex = [ |
| 205 | - '/[\?\[\]\/\\\=\<\>\:\;\,\'\"\&\$\#\*\(\)\|\~\`\!\{\}]/', |
|
| 206 | - '/\.$/', |
|
| 207 | - '/^\./', |
|
| 205 | + '/[\?\[\]\/\\\=\<\>\:\;\,\'\"\&\$\#\*\(\)\|\~\`\!\{\}]/', |
|
| 206 | + '/\.$/', |
|
| 207 | + '/^\./', |
|
| 208 | 208 | ]; |
| 209 | 209 | $replace = ['-', '', '']; |
| 210 | 210 | |
@@ -296,7 +296,7 @@ discard block |
||
| 296 | 296 | $tmpFilename = Directory::getAbsolutePath(dirname($file) . '/tmp_' . md5( |
| 297 | 297 | str_shuffle(uniqid($this->getDriverName(), false)) |
| 298 | 298 | . str_shuffle(uniqid($this->getDriverName(), false)) |
| 299 | - )); |
|
| 299 | + )); |
|
| 300 | 300 | |
| 301 | 301 | $f = fopen($tmpFilename, 'w+'); |
| 302 | 302 | flock($f, LOCK_EX); |
@@ -338,11 +338,11 @@ discard block |
||
| 338 | 338 | } |
| 339 | 339 | |
| 340 | 340 | $stat->setData(implode(', ', array_keys($this->itemInstances))) |
| 341 | - ->setRawData([ |
|
| 341 | + ->setRawData([ |
|
| 342 | 342 | 'tmp' => $this->tmp |
| 343 | - ]) |
|
| 344 | - ->setSize(Directory::dirSize($path)) |
|
| 345 | - ->setInfo('Number of files used to build the cache: ' . Directory::getFileCount($path)); |
|
| 343 | + ]) |
|
| 344 | + ->setSize(Directory::dirSize($path)) |
|
| 345 | + ->setInfo('Number of files used to build the cache: ' . Directory::getFileCount($path)); |
|
| 346 | 346 | |
| 347 | 347 | return $stat; |
| 348 | 348 | } |
@@ -63,8 +63,8 @@ |
||
| 63 | 63 | { |
| 64 | 64 | try { |
| 65 | 65 | $cacheItem = $this->internalCacheInstance |
| 66 | - ->getItem($key) |
|
| 67 | - ->set($value); |
|
| 66 | + ->getItem($key) |
|
| 67 | + ->set($value); |
|
| 68 | 68 | if (is_int($ttl) || $ttl instanceof \DateInterval) { |
| 69 | 69 | $cacheItem->expiresAfter($ttl); |
| 70 | 70 | } |
@@ -43,7 +43,7 @@ |
||
| 43 | 43 | $this->driver->setItem($this); |
| 44 | 44 | } else { |
| 45 | 45 | throw new phpFastCacheInvalidArgumentException(sprintf('$key must be a string, got type "%s" instead.', |
| 46 | - gettype($key))); |
|
| 46 | + gettype($key))); |
|
| 47 | 47 | } |
| 48 | 48 | } |
| 49 | 49 | |
@@ -148,9 +148,9 @@ |
||
| 148 | 148 | * Reset the Item |
| 149 | 149 | */ |
| 150 | 150 | $item->set(null) |
| 151 | - ->expiresAfter(abs((int) $this->getConfig()[ 'defaultTtl' ])) |
|
| 152 | - ->setHit(false) |
|
| 153 | - ->setTags([]); |
|
| 151 | + ->expiresAfter(abs((int) $this->getConfig()[ 'defaultTtl' ])) |
|
| 152 | + ->setHit(false) |
|
| 153 | + ->setTags([]); |
|
| 154 | 154 | if($this->config['itemDetailedDate']){ |
| 155 | 155 | |
| 156 | 156 | /** |