@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | use Phpfastcache\Core\Pool\{DriverBaseTrait, ExtendedCacheItemPoolInterface}; |
| 19 | 19 | use Phpfastcache\Entities\DriverStatistic; |
| 20 | 20 | use Phpfastcache\Exceptions\{ |
| 21 | - PhpfastcacheInvalidArgumentException |
|
| 21 | + PhpfastcacheInvalidArgumentException |
|
| 22 | 22 | }; |
| 23 | 23 | use Psr\Cache\CacheItemInterface; |
| 24 | 24 | |
@@ -121,9 +121,9 @@ discard block |
||
| 121 | 121 | $date = (new \DateTime())->setTimestamp(\time() - $info[ 'total_cache_uptime' ]); |
| 122 | 122 | |
| 123 | 123 | return (new DriverStatistic()) |
| 124 | - ->setInfo(\sprintf("The Wincache daemon is up since %s.\n For more information see RawData.", $date->format(DATE_RFC2822))) |
|
| 125 | - ->setSize($memInfo[ 'memory_free' ] - $memInfo[ 'memory_total' ]) |
|
| 126 | - ->setData(\implode(', ', \array_keys($this->itemInstances))) |
|
| 127 | - ->setRawData($memInfo); |
|
| 124 | + ->setInfo(\sprintf("The Wincache daemon is up since %s.\n For more information see RawData.", $date->format(DATE_RFC2822))) |
|
| 125 | + ->setSize($memInfo[ 'memory_free' ] - $memInfo[ 'memory_total' ]) |
|
| 126 | + ->setData(\implode(', ', \array_keys($this->itemInstances))) |
|
| 127 | + ->setRawData($memInfo); |
|
| 128 | 128 | } |
| 129 | 129 | } |
| 130 | 130 | \ No newline at end of file |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | * @author Georges.L (Geolim4) <[email protected]> |
| 12 | 12 | * |
| 13 | 13 | */ |
| 14 | -declare(strict_types=1); |
|
| 14 | +declare(strict_types = 1); |
|
| 15 | 15 | |
| 16 | 16 | namespace Phpfastcache\Drivers\Wincache; |
| 17 | 17 | |
@@ -118,11 +118,11 @@ discard block |
||
| 118 | 118 | { |
| 119 | 119 | $memInfo = wincache_ucache_meminfo(); |
| 120 | 120 | $info = wincache_ucache_info(); |
| 121 | - $date = (new \DateTime())->setTimestamp(\time() - $info[ 'total_cache_uptime' ]); |
|
| 121 | + $date = (new \DateTime())->setTimestamp(\time() - $info['total_cache_uptime']); |
|
| 122 | 122 | |
| 123 | 123 | return (new DriverStatistic()) |
| 124 | 124 | ->setInfo(\sprintf("The Wincache daemon is up since %s.\n For more information see RawData.", $date->format(DATE_RFC2822))) |
| 125 | - ->setSize($memInfo[ 'memory_free' ] - $memInfo[ 'memory_total' ]) |
|
| 125 | + ->setSize($memInfo['memory_free'] - $memInfo['memory_total']) |
|
| 126 | 126 | ->setData(\implode(', ', \array_keys($this->itemInstances))) |
| 127 | 127 | ->setRawData($memInfo); |
| 128 | 128 | } |
@@ -17,11 +17,11 @@ discard block |
||
| 17 | 17 | |
| 18 | 18 | use Phpfastcache\Config\ConfigurationOption; |
| 19 | 19 | use Phpfastcache\Core\Pool\{ |
| 20 | - DriverBaseTrait, ExtendedCacheItemPoolInterface |
|
| 20 | + DriverBaseTrait, ExtendedCacheItemPoolInterface |
|
| 21 | 21 | }; |
| 22 | 22 | use Phpfastcache\Entities\DriverStatistic; |
| 23 | 23 | use Phpfastcache\Exceptions\{ |
| 24 | - PhpfastcacheInvalidArgumentException, PhpfastcacheLogicException |
|
| 24 | + PhpfastcacheInvalidArgumentException, PhpfastcacheLogicException |
|
| 25 | 25 | }; |
| 26 | 26 | use Phpfastcache\Util\ArrayObject; |
| 27 | 27 | use Psr\Cache\CacheItemInterface; |
@@ -162,10 +162,10 @@ discard block |
||
| 162 | 162 | $date = (new \DateTime())->setTimestamp(\time() - $info[ 'uptime_in_seconds' ]); |
| 163 | 163 | |
| 164 | 164 | return (new DriverStatistic()) |
| 165 | - ->setData(\implode(', ', \array_keys($this->itemInstances))) |
|
| 166 | - ->setRawData($info) |
|
| 167 | - ->setSize((int)$info[ 'used_memory' ]) |
|
| 168 | - ->setInfo(\sprintf("The Redis daemon v%s is up since %s.\n For more information see RawData. \n Driver size includes the memory allocation size.", |
|
| 165 | + ->setData(\implode(', ', \array_keys($this->itemInstances))) |
|
| 166 | + ->setRawData($info) |
|
| 167 | + ->setSize((int)$info[ 'used_memory' ]) |
|
| 168 | + ->setInfo(\sprintf("The Redis daemon v%s is up since %s.\n For more information see RawData. \n Driver size includes the memory allocation size.", |
|
| 169 | 169 | $info[ 'redis_version' ], $date->format(DATE_RFC2822))); |
| 170 | 170 | } |
| 171 | 171 | } |
| 172 | 172 | \ No newline at end of file |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | * @author Georges.L (Geolim4) <[email protected]> |
| 12 | 12 | * |
| 13 | 13 | */ |
| 14 | -declare(strict_types=1); |
|
| 14 | +declare(strict_types = 1); |
|
| 15 | 15 | |
| 16 | 16 | namespace Phpfastcache\Drivers\Redis; |
| 17 | 17 | |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | * Check for Cross-Driver type confusion |
| 135 | 135 | */ |
| 136 | 136 | if ($item instanceof Item) { |
| 137 | - return (bool)$this->instance->del($item->getKey()); |
|
| 137 | + return (bool) $this->instance->del($item->getKey()); |
|
| 138 | 138 | } |
| 139 | 139 | |
| 140 | 140 | throw new PhpfastcacheInvalidArgumentException('Cross-Driver type confusion detected'); |
@@ -161,13 +161,13 @@ discard block |
||
| 161 | 161 | { |
| 162 | 162 | // used_memory |
| 163 | 163 | $info = $this->instance->info(); |
| 164 | - $date = (new \DateTime())->setTimestamp(\time() - $info[ 'uptime_in_seconds' ]); |
|
| 164 | + $date = (new \DateTime())->setTimestamp(\time() - $info['uptime_in_seconds']); |
|
| 165 | 165 | |
| 166 | 166 | return (new DriverStatistic()) |
| 167 | 167 | ->setData(\implode(', ', \array_keys($this->itemInstances))) |
| 168 | 168 | ->setRawData($info) |
| 169 | - ->setSize((int)$info[ 'used_memory' ]) |
|
| 169 | + ->setSize((int) $info['used_memory']) |
|
| 170 | 170 | ->setInfo(\sprintf("The Redis daemon v%s is up since %s.\n For more information see RawData. \n Driver size includes the memory allocation size.", |
| 171 | - $info[ 'redis_version' ], $date->format(DATE_RFC2822))); |
|
| 171 | + $info['redis_version'], $date->format(DATE_RFC2822))); |
|
| 172 | 172 | } |
| 173 | 173 | } |
| 174 | 174 | \ No newline at end of file |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | * @author Georges.L (Geolim4) <[email protected]> |
| 12 | 12 | * |
| 13 | 13 | */ |
| 14 | -declare(strict_types=1); |
|
| 14 | +declare(strict_types = 1); |
|
| 15 | 15 | |
| 16 | 16 | namespace phpFastCache; |
| 17 | 17 | |
@@ -76,8 +76,8 @@ discard block |
||
| 76 | 76 | * due to performance issue on huge |
| 77 | 77 | * loop dispatching operations |
| 78 | 78 | */ |
| 79 | - if (isset($this->events[ $eventName ])) { |
|
| 80 | - foreach ($this->events[ $eventName ] as $event) { |
|
| 79 | + if (isset($this->events[$eventName])) { |
|
| 80 | + foreach ($this->events[$eventName] as $event) { |
|
| 81 | 81 | call_user_func_array($event, $args); |
| 82 | 82 | } |
| 83 | 83 | } |
@@ -93,14 +93,14 @@ discard block |
||
| 93 | 93 | { |
| 94 | 94 | if (\strpos($name, 'on') === 0) { |
| 95 | 95 | $name = \substr($name, 2); |
| 96 | - if (\is_callable($arguments[ 0 ])) { |
|
| 97 | - if (isset($arguments[ 1 ]) && \is_string($arguments[ 0 ])) { |
|
| 98 | - $this->events[ $name ][ $arguments[ 1 ] ] = $arguments[ 0 ]; |
|
| 96 | + if (\is_callable($arguments[0])) { |
|
| 97 | + if (isset($arguments[1]) && \is_string($arguments[0])) { |
|
| 98 | + $this->events[$name][$arguments[1]] = $arguments[0]; |
|
| 99 | 99 | } else { |
| 100 | - $this->events[ $name ][] = $arguments[ 0 ]; |
|
| 100 | + $this->events[$name][] = $arguments[0]; |
|
| 101 | 101 | } |
| 102 | 102 | } else { |
| 103 | - throw new PhpfastcacheInvalidArgumentException(\sprintf('Expected Callable, got "%s"', \gettype($arguments[ 0 ]))); |
|
| 103 | + throw new PhpfastcacheInvalidArgumentException(\sprintf('Expected Callable, got "%s"', \gettype($arguments[0]))); |
|
| 104 | 104 | } |
| 105 | 105 | } else { |
| 106 | 106 | throw new \BadMethodCallException('An event must start with "on" such as "onCacheGetItem"'); |
@@ -114,8 +114,8 @@ discard block |
||
| 114 | 114 | */ |
| 115 | 115 | public function unbindEventCallback($eventName, $callbackName): bool |
| 116 | 116 | { |
| 117 | - $return = isset($this->events[ $eventName ][ $callbackName ]); |
|
| 118 | - unset($this->events[ $eventName ][ $callbackName ]); |
|
| 117 | + $return = isset($this->events[$eventName][$callbackName]); |
|
| 118 | + unset($this->events[$eventName][$callbackName]); |
|
| 119 | 119 | |
| 120 | 120 | return $return; |
| 121 | 121 | } |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | * @author Georges.L (Geolim4) <[email protected]> |
| 12 | 12 | * |
| 13 | 13 | */ |
| 14 | -declare(strict_types=1); |
|
| 14 | +declare(strict_types = 1); |
|
| 15 | 15 | |
| 16 | 16 | namespace Phpfastcache; |
| 17 | 17 | |
@@ -64,29 +64,29 @@ discard block |
||
| 64 | 64 | */ |
| 65 | 65 | static $version; |
| 66 | 66 | |
| 67 | - if($version && $cacheable){ |
|
| 67 | + if ($version && $cacheable) { |
|
| 68 | 68 | return $version; |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | - if(\function_exists('shell_exec')){ |
|
| 71 | + if (\function_exists('shell_exec')) { |
|
| 72 | 72 | $stdout = shell_exec('git describe --abbrev=0 --tags'); |
| 73 | - if(\is_string($stdout)){ |
|
| 73 | + if (\is_string($stdout)) { |
|
| 74 | 74 | $version = \trim($stdout); |
| 75 | 75 | return $version; |
| 76 | 76 | } |
| 77 | 77 | throw new PhpfastcacheLogicException('The git command used to retrieve the PhpFastCache version has failed.'); |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | - if(!$fallbackOnChangelog){ |
|
| 80 | + if (!$fallbackOnChangelog) { |
|
| 81 | 81 | throw new PhpfastcacheLogicException('shell_exec is disabled therefore the PhpFastCache version cannot be retrieved.'); |
| 82 | 82 | } |
| 83 | 83 | |
| 84 | 84 | $changelogFilename = __DIR__ . '/../../CHANGELOG.md'; |
| 85 | - if(\file_exists($changelogFilename)){ |
|
| 85 | + if (\file_exists($changelogFilename)) { |
|
| 86 | 86 | $versionPrefix = '## '; |
| 87 | 87 | $changelog = \explode("\n", self::getPhpFastCacheChangelog()); |
| 88 | - foreach ($changelog as $line){ |
|
| 89 | - if(\strpos($line, $versionPrefix) === 0){ |
|
| 88 | + foreach ($changelog as $line) { |
|
| 89 | + if (\strpos($line, $versionPrefix) === 0) { |
|
| 90 | 90 | $version = \trim(\str_replace($versionPrefix, '', $line)); |
| 91 | 91 | return $version; |
| 92 | 92 | } |
@@ -104,13 +104,13 @@ discard block |
||
| 104 | 104 | { |
| 105 | 105 | static $hash; |
| 106 | 106 | |
| 107 | - if($hash && $cacheable){ |
|
| 107 | + if ($hash && $cacheable) { |
|
| 108 | 108 | return $hash; |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | - if(\function_exists('shell_exec')){ |
|
| 111 | + if (\function_exists('shell_exec')) { |
|
| 112 | 112 | $stdout = \shell_exec('git rev-parse --short HEAD'); |
| 113 | - if(\is_string($stdout)){ |
|
| 113 | + if (\is_string($stdout)) { |
|
| 114 | 114 | $hash = \trim($stdout); |
| 115 | 115 | return "#{$hash}"; |
| 116 | 116 | } |
@@ -128,9 +128,9 @@ discard block |
||
| 128 | 128 | public static function getChangelog(): string |
| 129 | 129 | { |
| 130 | 130 | $changelogFilename = __DIR__ . '/../../CHANGELOG_API.md'; |
| 131 | - if(\file_exists($changelogFilename)){ |
|
| 131 | + if (\file_exists($changelogFilename)) { |
|
| 132 | 132 | $string = \str_replace(["\r\n", "\r"], "\n", \trim(\file_get_contents($changelogFilename))); |
| 133 | - if($string){ |
|
| 133 | + if ($string) { |
|
| 134 | 134 | return $string; |
| 135 | 135 | } |
| 136 | 136 | throw new PhpfastcacheLogicException('Unable to retrieve the PhpFastCache API changelog as it seems to be empty.'); |
@@ -147,9 +147,9 @@ discard block |
||
| 147 | 147 | public static function getPhpFastCacheChangelog(): string |
| 148 | 148 | { |
| 149 | 149 | $changelogFilename = __DIR__ . '/../../CHANGELOG.md'; |
| 150 | - if(\file_exists($changelogFilename)){ |
|
| 150 | + if (\file_exists($changelogFilename)) { |
|
| 151 | 151 | $string = \str_replace(["\r\n", "\r"], "\n", \trim(\file_get_contents($changelogFilename))); |
| 152 | - if($string){ |
|
| 152 | + if ($string) { |
|
| 153 | 153 | return $string; |
| 154 | 154 | } |
| 155 | 155 | throw new PhpfastcacheLogicException('Unable to retrieve the PhpFastCache changelog as it seems to be empty.'); |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | use Phpfastcache\Config\ConfigurationOption; |
| 19 | 19 | use Phpfastcache\Core\Item\ExtendedCacheItemInterface; |
| 20 | 20 | use Phpfastcache\Exceptions\{ |
| 21 | - PhpfastcacheInvalidArgumentException, PhpfastcacheDriverCheckException, PhpfastcacheLogicException |
|
| 21 | + PhpfastcacheInvalidArgumentException, PhpfastcacheDriverCheckException, PhpfastcacheLogicException |
|
| 22 | 22 | }; |
| 23 | 23 | use Phpfastcache\Util\ArrayObject; |
| 24 | 24 | |
@@ -163,9 +163,9 @@ discard block |
||
| 163 | 163 | public function driverPreWrap(ExtendedCacheItemInterface $item): array |
| 164 | 164 | { |
| 165 | 165 | $wrap = [ |
| 166 | - self::DRIVER_DATA_WRAPPER_INDEX => $item->get(), |
|
| 167 | - self::DRIVER_TAGS_WRAPPER_INDEX => $item->getTags(), |
|
| 168 | - self::DRIVER_EDATE_WRAPPER_INDEX => $item->getExpirationDate(), |
|
| 166 | + self::DRIVER_DATA_WRAPPER_INDEX => $item->get(), |
|
| 167 | + self::DRIVER_TAGS_WRAPPER_INDEX => $item->getTags(), |
|
| 168 | + self::DRIVER_EDATE_WRAPPER_INDEX => $item->getExpirationDate(), |
|
| 169 | 169 | ]; |
| 170 | 170 | |
| 171 | 171 | if ($this->getConfig()->isItemDetailedDate()) { |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | * @author Georges.L (Geolim4) <[email protected]> |
| 12 | 12 | * |
| 13 | 13 | */ |
| 14 | -declare(strict_types=1); |
|
| 14 | +declare(strict_types = 1); |
|
| 15 | 15 | |
| 16 | 16 | namespace Phpfastcache\Core\Pool; |
| 17 | 17 | |
@@ -169,15 +169,15 @@ discard block |
||
| 169 | 169 | ]; |
| 170 | 170 | |
| 171 | 171 | if ($this->getConfig()->isItemDetailedDate()) { |
| 172 | - $wrap[ self::DRIVER_MDATE_WRAPPER_INDEX ] = new \DateTime(); |
|
| 172 | + $wrap[self::DRIVER_MDATE_WRAPPER_INDEX] = new \DateTime(); |
|
| 173 | 173 | /** |
| 174 | 174 | * If the creation date exists |
| 175 | 175 | * reuse it else set a new Date |
| 176 | 176 | */ |
| 177 | - $wrap[ self::DRIVER_CDATE_WRAPPER_INDEX ] = $item->getCreationDate() ?: new \DateTime(); |
|
| 177 | + $wrap[self::DRIVER_CDATE_WRAPPER_INDEX] = $item->getCreationDate() ?: new \DateTime(); |
|
| 178 | 178 | } else { |
| 179 | - $wrap[ self::DRIVER_MDATE_WRAPPER_INDEX ] = null; |
|
| 180 | - $wrap[ self::DRIVER_CDATE_WRAPPER_INDEX ] = null; |
|
| 179 | + $wrap[self::DRIVER_MDATE_WRAPPER_INDEX] = null; |
|
| 180 | + $wrap[self::DRIVER_CDATE_WRAPPER_INDEX] = null; |
|
| 181 | 181 | } |
| 182 | 182 | |
| 183 | 183 | return $wrap; |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | */ |
| 190 | 190 | public function driverUnwrapData(array $wrapper) |
| 191 | 191 | { |
| 192 | - return $wrapper[ self::DRIVER_DATA_WRAPPER_INDEX ]; |
|
| 192 | + return $wrapper[self::DRIVER_DATA_WRAPPER_INDEX]; |
|
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | /** |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | */ |
| 199 | 199 | public function driverUnwrapTags(array $wrapper) |
| 200 | 200 | { |
| 201 | - return $wrapper[ self::DRIVER_TAGS_WRAPPER_INDEX ]; |
|
| 201 | + return $wrapper[self::DRIVER_TAGS_WRAPPER_INDEX]; |
|
| 202 | 202 | } |
| 203 | 203 | |
| 204 | 204 | |
@@ -208,7 +208,7 @@ discard block |
||
| 208 | 208 | */ |
| 209 | 209 | public function driverUnwrapEdate(array $wrapper) |
| 210 | 210 | { |
| 211 | - return $wrapper[ self::DRIVER_EDATE_WRAPPER_INDEX ]; |
|
| 211 | + return $wrapper[self::DRIVER_EDATE_WRAPPER_INDEX]; |
|
| 212 | 212 | } |
| 213 | 213 | |
| 214 | 214 | /** |
@@ -217,7 +217,7 @@ discard block |
||
| 217 | 217 | */ |
| 218 | 218 | public function driverUnwrapCdate(array $wrapper) |
| 219 | 219 | { |
| 220 | - return $wrapper[ self::DRIVER_CDATE_WRAPPER_INDEX ]; |
|
| 220 | + return $wrapper[self::DRIVER_CDATE_WRAPPER_INDEX]; |
|
| 221 | 221 | } |
| 222 | 222 | |
| 223 | 223 | |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | */ |
| 228 | 228 | public function driverUnwrapMdate(array $wrapper) |
| 229 | 229 | { |
| 230 | - return $wrapper[ self::DRIVER_MDATE_WRAPPER_INDEX ]; |
|
| 230 | + return $wrapper[self::DRIVER_MDATE_WRAPPER_INDEX]; |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | /** |
@@ -284,7 +284,7 @@ discard block |
||
| 284 | 284 | * that has slow performances |
| 285 | 285 | */ |
| 286 | 286 | |
| 287 | - $tagsItem->set(array_merge((array)$data, [$item->getKey() => $expTimestamp])); |
|
| 287 | + $tagsItem->set(array_merge((array) $data, [$item->getKey() => $expTimestamp])); |
|
| 288 | 288 | |
| 289 | 289 | /** |
| 290 | 290 | * Set the expiration date |
@@ -306,9 +306,9 @@ discard block |
||
| 306 | 306 | $tagsItems = $this->getItems($this->getTagKeys($item->getRemovedTags())); |
| 307 | 307 | |
| 308 | 308 | foreach ($tagsItems as $tagsItem) { |
| 309 | - $data = (array)$tagsItem->get(); |
|
| 309 | + $data = (array) $tagsItem->get(); |
|
| 310 | 310 | |
| 311 | - unset($data[ $item->getKey() ]); |
|
| 311 | + unset($data[$item->getKey()]); |
|
| 312 | 312 | $tagsItem->set($data); |
| 313 | 313 | |
| 314 | 314 | /** |
@@ -389,7 +389,7 @@ discard block |
||
| 389 | 389 | public static function getConfigClass(): string |
| 390 | 390 | { |
| 391 | 391 | $localConfigClass = substr(static::class, 0, strrpos(static::class, '\\')) . '\Config'; |
| 392 | - if(\class_exists($localConfigClass) && is_a($localConfigClass, ConfigurationOption::class, true)){ |
|
| 392 | + if (\class_exists($localConfigClass) && is_a($localConfigClass, ConfigurationOption::class, true)) { |
|
| 393 | 393 | return $localConfigClass; |
| 394 | 394 | } |
| 395 | 395 | return ConfigurationOption::class; |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | use Phpfastcache\Entities\ItemBatch; |
| 22 | 22 | use Phpfastcache\Util\ClassNamespaceResolverTrait; |
| 23 | 23 | use Phpfastcache\Exceptions\{ |
| 24 | - PhpfastcacheInvalidArgumentException, PhpfastcacheCoreException, PhpfastcacheLogicException |
|
| 24 | + PhpfastcacheInvalidArgumentException, PhpfastcacheCoreException, PhpfastcacheLogicException |
|
| 25 | 25 | }; |
| 26 | 26 | use Phpfastcache\Config\ConfigurationOption; |
| 27 | 27 | use Psr\Cache\CacheItemInterface; |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | if ($driverArray) { |
| 91 | 91 | if (!\is_array($driverArray)) { |
| 92 | 92 | throw new PhpfastcacheCoreException(\sprintf('The driverRead method returned an unexpected variable type: %s', |
| 93 | - \gettype($driverArray))); |
|
| 93 | + \gettype($driverArray))); |
|
| 94 | 94 | } |
| 95 | 95 | $driverData = $this->driverUnwrapData($driverArray); |
| 96 | 96 | |
@@ -155,9 +155,9 @@ discard block |
||
| 155 | 155 | * Reset the Item |
| 156 | 156 | */ |
| 157 | 157 | $item->set(null) |
| 158 | - ->expiresAfter(\abs((int)$this->getConfig()[ 'defaultTtl' ])) |
|
| 159 | - ->setHit(false) |
|
| 160 | - ->setTags([]); |
|
| 158 | + ->expiresAfter(\abs((int)$this->getConfig()[ 'defaultTtl' ])) |
|
| 159 | + ->setHit(false) |
|
| 160 | + ->setTags([]); |
|
| 161 | 161 | if ($this->getConfig()->isItemDetailedDate()) { |
| 162 | 162 | |
| 163 | 163 | /** |
@@ -341,8 +341,8 @@ discard block |
||
| 341 | 341 | $class = new \ReflectionClass((new \ReflectionObject($this))->getNamespaceName() . '\Item'); |
| 342 | 342 | $itemBatch = $class->newInstanceArgs([$this, $item->getKey()]); |
| 343 | 343 | $itemBatch->setEventManager($this->eventManager) |
| 344 | - ->set(new ItemBatch($item->getKey(), new \DateTime())) |
|
| 345 | - ->expiresAfter($this->getConfig()->getCacheSlamsTimeout()); |
|
| 344 | + ->set(new ItemBatch($item->getKey(), new \DateTime())) |
|
| 345 | + ->expiresAfter($this->getConfig()->getCacheSlamsTimeout()); |
|
| 346 | 346 | |
| 347 | 347 | /** |
| 348 | 348 | * To avoid SPL mismatches |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | * @author Georges.L (Geolim4) <[email protected]> |
| 12 | 12 | * |
| 13 | 13 | */ |
| 14 | -declare(strict_types=1); |
|
| 14 | +declare(strict_types = 1); |
|
| 15 | 15 | |
| 16 | 16 | namespace Phpfastcache\Core\Pool; |
| 17 | 17 | |
@@ -71,9 +71,9 @@ discard block |
||
| 71 | 71 | * due to performance issue on huge |
| 72 | 72 | * loop dispatching operations |
| 73 | 73 | */ |
| 74 | - if (!isset($this->itemInstances[ $key ])) { |
|
| 74 | + if (!isset($this->itemInstances[$key])) { |
|
| 75 | 75 | if (\preg_match('~([' . \preg_quote(self::$unsupportedKeyChars, '~') . ']+)~', $key, $matches)) { |
| 76 | - throw new PhpfastcacheInvalidArgumentException('Unsupported key character detected: "' . $matches[ 1 ] . '". Please check: https://github.com/PHPSocialNetwork/phpfastcache/wiki/%5BV6%5D-Unsupported-characters-in-key-identifiers'); |
|
| 76 | + throw new PhpfastcacheInvalidArgumentException('Unsupported key character detected: "' . $matches[1] . '". Please check: https://github.com/PHPSocialNetwork/phpfastcache/wiki/%5BV6%5D-Unsupported-characters-in-key-identifiers'); |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | CacheManager::$ReadHits++; |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | } |
| 95 | 95 | $driverData = $this->driverUnwrapData($driverArray); |
| 96 | 96 | |
| 97 | - if ($this->getConfig()[ 'preventCacheSlams' ]) { |
|
| 97 | + if ($this->getConfig()['preventCacheSlams']) { |
|
| 98 | 98 | while ($driverData instanceof ItemBatch) { |
| 99 | 99 | if ($driverData->getItemDate()->getTimestamp() + $this->getConfig()->getCacheSlamsTimeout() < \time()) { |
| 100 | 100 | /** |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | * Reset the Item |
| 156 | 156 | */ |
| 157 | 157 | $item->set(null) |
| 158 | - ->expiresAfter(\abs((int)$this->getConfig()[ 'defaultTtl' ])) |
|
| 158 | + ->expiresAfter(\abs((int) $this->getConfig()['defaultTtl'])) |
|
| 159 | 159 | ->setHit(false) |
| 160 | 160 | ->setTags([]); |
| 161 | 161 | if ($this->getConfig()->isItemDetailedDate()) { |
@@ -172,7 +172,7 @@ discard block |
||
| 172 | 172 | $item->setHit(true); |
| 173 | 173 | } |
| 174 | 174 | } else { |
| 175 | - $item->expiresAfter(abs((int)$this->getConfig()[ 'defaultTtl' ])); |
|
| 175 | + $item->expiresAfter(abs((int) $this->getConfig()['defaultTtl'])); |
|
| 176 | 176 | } |
| 177 | 177 | } |
| 178 | 178 | } |
@@ -185,9 +185,9 @@ discard block |
||
| 185 | 185 | * @param $this ExtendedCacheItemPoolInterface |
| 186 | 186 | * @param $this ExtendedCacheItemInterface |
| 187 | 187 | */ |
| 188 | - $this->eventManager->dispatch('CacheGetItem', $this, $this->itemInstances[ $key ]); |
|
| 188 | + $this->eventManager->dispatch('CacheGetItem', $this, $this->itemInstances[$key]); |
|
| 189 | 189 | |
| 190 | - return $this->itemInstances[ $key ]; |
|
| 190 | + return $this->itemInstances[$key]; |
|
| 191 | 191 | } |
| 192 | 192 | |
| 193 | 193 | /** |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | public function setItem(CacheItemInterface $item) |
| 199 | 199 | { |
| 200 | 200 | if ($this->getClassNamespace() . '\\Item' === \get_class($item)) { |
| 201 | - $this->itemInstances[ $item->getKey() ] = $item; |
|
| 201 | + $this->itemInstances[$item->getKey()] = $item; |
|
| 202 | 202 | |
| 203 | 203 | return $this; |
| 204 | 204 | } |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | { |
| 216 | 216 | $collection = []; |
| 217 | 217 | foreach ($keys as $key) { |
| 218 | - $collection[ $key ] = $this->getItem($key); |
|
| 218 | + $collection[$key] = $this->getItem($key); |
|
| 219 | 219 | } |
| 220 | 220 | |
| 221 | 221 | return $collection; |
@@ -302,7 +302,7 @@ discard block |
||
| 302 | 302 | } |
| 303 | 303 | } |
| 304 | 304 | |
| 305 | - return (bool)$return; |
|
| 305 | + return (bool) $return; |
|
| 306 | 306 | } |
| 307 | 307 | |
| 308 | 308 | /** |
@@ -320,9 +320,9 @@ discard block |
||
| 320 | 320 | * due to performance issue on huge |
| 321 | 321 | * loop dispatching operations |
| 322 | 322 | */ |
| 323 | - if (!isset($this->itemInstances[ $item->getKey() ])) { |
|
| 324 | - $this->itemInstances[ $item->getKey() ] = $item; |
|
| 325 | - } else if (\spl_object_hash($item) !== \spl_object_hash($this->itemInstances[ $item->getKey() ])) { |
|
| 323 | + if (!isset($this->itemInstances[$item->getKey()])) { |
|
| 324 | + $this->itemInstances[$item->getKey()] = $item; |
|
| 325 | + } else if (\spl_object_hash($item) !== \spl_object_hash($this->itemInstances[$item->getKey()])) { |
|
| 326 | 326 | throw new \RuntimeException('Spl object hash mismatches ! You probably tried to save a detached item which has been already retrieved from cache.'); |
| 327 | 327 | } |
| 328 | 328 | |
@@ -374,8 +374,8 @@ discard block |
||
| 374 | 374 | public function saveDeferred(CacheItemInterface $item) |
| 375 | 375 | { |
| 376 | 376 | if (!\array_key_exists($item->getKey(), $this->itemInstances)) { |
| 377 | - $this->itemInstances[ $item->getKey() ] = $item; |
|
| 378 | - } else if (\spl_object_hash($item) !== \spl_object_hash($this->itemInstances[ $item->getKey() ])) { |
|
| 377 | + $this->itemInstances[$item->getKey()] = $item; |
|
| 378 | + } else if (\spl_object_hash($item) !== \spl_object_hash($this->itemInstances[$item->getKey()])) { |
|
| 379 | 379 | throw new \RuntimeException('Spl object hash mismatches ! You probably tried to save a detached item which has been already retrieved from cache.'); |
| 380 | 380 | } |
| 381 | 381 | |
@@ -386,7 +386,7 @@ discard block |
||
| 386 | 386 | */ |
| 387 | 387 | $this->eventManager->dispatch('CacheSaveDeferredItem', $this, $item); |
| 388 | 388 | |
| 389 | - return $this->deferredList[ $item->getKey() ] = $item; |
|
| 389 | + return $this->deferredList[$item->getKey()] = $item; |
|
| 390 | 390 | } |
| 391 | 391 | |
| 392 | 392 | /** |
@@ -406,11 +406,11 @@ discard block |
||
| 406 | 406 | foreach ($this->deferredList as $key => $item) { |
| 407 | 407 | $result = $this->save($item); |
| 408 | 408 | if ($return !== false) { |
| 409 | - unset($this->deferredList[ $key ]); |
|
| 409 | + unset($this->deferredList[$key]); |
|
| 410 | 410 | $return = $result; |
| 411 | 411 | } |
| 412 | 412 | } |
| 413 | 413 | |
| 414 | - return (bool)$return; |
|
| 414 | + return (bool) $return; |
|
| 415 | 415 | } |
| 416 | 416 | } |
| 417 | 417 | \ No newline at end of file |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | use Phpfastcache\Core\Pool\{DriverBaseTrait, ExtendedCacheItemPoolInterface}; |
| 20 | 20 | use Phpfastcache\Entities\DriverStatistic; |
| 21 | 21 | use Phpfastcache\Exceptions\{ |
| 22 | - PhpfastcacheInvalidArgumentException, PhpfastcacheDriverException |
|
| 22 | + PhpfastcacheInvalidArgumentException, PhpfastcacheDriverException |
|
| 23 | 23 | }; |
| 24 | 24 | use Phpfastcache\Util\ArrayObject; |
| 25 | 25 | use Predis\Client as PredisClient; |
@@ -57,8 +57,8 @@ discard block |
||
| 57 | 57 | { |
| 58 | 58 | if(!empty($this->getConfig()->getPath())){ |
| 59 | 59 | $this->instance = new PredisClient([ |
| 60 | - 'scheme' => 'unix', |
|
| 61 | - 'path' => $this->getConfig()->getPath() |
|
| 60 | + 'scheme' => 'unix', |
|
| 61 | + 'path' => $this->getConfig()->getPath() |
|
| 62 | 62 | ]); |
| 63 | 63 | }else{ |
| 64 | 64 | $this->instance = new PredisClient($this->getConfig()->getPredisConfigArray()); |
@@ -171,10 +171,10 @@ discard block |
||
| 171 | 171 | $date = (isset($info[ 'Server' ][ 'uptime_in_seconds' ]) ? (new \DateTime())->setTimestamp(\time() - $info[ 'Server' ][ 'uptime_in_seconds' ]) : 'unknown date'); |
| 172 | 172 | |
| 173 | 173 | return (new DriverStatistic()) |
| 174 | - ->setData(\implode(', ', \array_keys($this->itemInstances))) |
|
| 175 | - ->setRawData($info) |
|
| 176 | - ->setSize((int) $size) |
|
| 177 | - ->setInfo(\sprintf("The Redis daemon v%s is up since %s.\n For more information see RawData. \n Driver size includes the memory allocation size.", |
|
| 174 | + ->setData(\implode(', ', \array_keys($this->itemInstances))) |
|
| 175 | + ->setRawData($info) |
|
| 176 | + ->setSize((int) $size) |
|
| 177 | + ->setInfo(\sprintf("The Redis daemon v%s is up since %s.\n For more information see RawData. \n Driver size includes the memory allocation size.", |
|
| 178 | 178 | $version, $date->format(DATE_RFC2822))); |
| 179 | 179 | } |
| 180 | 180 | } |
| 181 | 181 | \ No newline at end of file |
@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | * @author Georges.L (Geolim4) <[email protected]> |
| 13 | 13 | * |
| 14 | 14 | */ |
| 15 | -declare(strict_types=1); |
|
| 15 | +declare(strict_types = 1); |
|
| 16 | 16 | |
| 17 | 17 | namespace Phpfastcache\Drivers\Predis; |
| 18 | 18 | |
@@ -55,12 +55,12 @@ discard block |
||
| 55 | 55 | */ |
| 56 | 56 | protected function driverConnect(): bool |
| 57 | 57 | { |
| 58 | - if(!empty($this->getConfig()->getPath())){ |
|
| 58 | + if (!empty($this->getConfig()->getPath())) { |
|
| 59 | 59 | $this->instance = new PredisClient([ |
| 60 | 60 | 'scheme' => 'unix', |
| 61 | 61 | 'path' => $this->getConfig()->getPath() |
| 62 | 62 | ]); |
| 63 | - }else{ |
|
| 63 | + } else { |
|
| 64 | 64 | $this->instance = new PredisClient($this->getConfig()->getPredisConfigArray()); |
| 65 | 65 | } |
| 66 | 66 | |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | * @see https://redis.io/commands/expire |
| 107 | 107 | */ |
| 108 | 108 | if ($ttl <= 0) { |
| 109 | - return (bool)$this->instance->expire($item->getKey(), 0); |
|
| 109 | + return (bool) $this->instance->expire($item->getKey(), 0); |
|
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | return $this->instance->setex($item->getKey(), $ttl, $this->encode($this->driverPreWrap($item)))->getPayload() === 'OK'; |
@@ -166,9 +166,9 @@ discard block |
||
| 166 | 166 | public function getStats(): DriverStatistic |
| 167 | 167 | { |
| 168 | 168 | $info = $this->instance->info(); |
| 169 | - $size = (isset($info[ 'Memory' ][ 'used_memory' ]) ? $info[ 'Memory' ][ 'used_memory' ] : 0); |
|
| 170 | - $version = (isset($info[ 'Server' ][ 'redis_version' ]) ? $info[ 'Server' ][ 'redis_version' ] : 0); |
|
| 171 | - $date = (isset($info[ 'Server' ][ 'uptime_in_seconds' ]) ? (new \DateTime())->setTimestamp(\time() - $info[ 'Server' ][ 'uptime_in_seconds' ]) : 'unknown date'); |
|
| 169 | + $size = (isset($info['Memory']['used_memory']) ? $info['Memory']['used_memory'] : 0); |
|
| 170 | + $version = (isset($info['Server']['redis_version']) ? $info['Server']['redis_version'] : 0); |
|
| 171 | + $date = (isset($info['Server']['uptime_in_seconds']) ? (new \DateTime())->setTimestamp(\time() - $info['Server']['uptime_in_seconds']) : 'unknown date'); |
|
| 172 | 172 | |
| 173 | 173 | return (new DriverStatistic()) |
| 174 | 174 | ->setData(\implode(', ', \array_keys($this->itemInstances))) |
@@ -60,7 +60,7 @@ |
||
| 60 | 60 | 'scheme' => 'unix', |
| 61 | 61 | 'path' => $this->getConfig()->getPath() |
| 62 | 62 | ]); |
| 63 | - }else{ |
|
| 63 | + } else{ |
|
| 64 | 64 | $this->instance = new PredisClient($this->getConfig()->getPredisConfigArray()); |
| 65 | 65 | } |
| 66 | 66 | |
@@ -18,14 +18,14 @@ discard block |
||
| 18 | 18 | |
| 19 | 19 | use LogicException; |
| 20 | 20 | use MongoDB\{ |
| 21 | - Client, Database, BSON\Binary, BSON\UTCDateTime, Collection, DeleteResult, Driver\Command, Driver\Exception\Exception as MongoDBException |
|
| 21 | + Client, Database, BSON\Binary, BSON\UTCDateTime, Collection, DeleteResult, Driver\Command, Driver\Exception\Exception as MongoDBException |
|
| 22 | 22 | }; |
| 23 | 23 | use Phpfastcache\Core\Pool\{ |
| 24 | - DriverBaseTrait, ExtendedCacheItemPoolInterface |
|
| 24 | + DriverBaseTrait, ExtendedCacheItemPoolInterface |
|
| 25 | 25 | }; |
| 26 | 26 | use Phpfastcache\Entities\DriverStatistic; |
| 27 | 27 | use Phpfastcache\Exceptions\{ |
| 28 | - PhpfastcacheDriverException, PhpfastcacheInvalidArgumentException |
|
| 28 | + PhpfastcacheDriverException, PhpfastcacheInvalidArgumentException |
|
| 29 | 29 | }; |
| 30 | 30 | |
| 31 | 31 | use Psr\Cache\CacheItemInterface; |
@@ -78,16 +78,16 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | if ($document) { |
| 80 | 80 | $return = [ |
| 81 | - self::DRIVER_DATA_WRAPPER_INDEX => $this->decode($document[ self::DRIVER_DATA_WRAPPER_INDEX ]->getData()), |
|
| 82 | - self::DRIVER_TAGS_WRAPPER_INDEX => $this->decode($document[ self::DRIVER_TAGS_WRAPPER_INDEX ]->getData()), |
|
| 83 | - self::DRIVER_EDATE_WRAPPER_INDEX => (new \DateTime())->setTimestamp($document[ self::DRIVER_EDATE_WRAPPER_INDEX ]->toDateTime()->getTimestamp()), |
|
| 81 | + self::DRIVER_DATA_WRAPPER_INDEX => $this->decode($document[ self::DRIVER_DATA_WRAPPER_INDEX ]->getData()), |
|
| 82 | + self::DRIVER_TAGS_WRAPPER_INDEX => $this->decode($document[ self::DRIVER_TAGS_WRAPPER_INDEX ]->getData()), |
|
| 83 | + self::DRIVER_EDATE_WRAPPER_INDEX => (new \DateTime())->setTimestamp($document[ self::DRIVER_EDATE_WRAPPER_INDEX ]->toDateTime()->getTimestamp()), |
|
| 84 | 84 | ]; |
| 85 | 85 | |
| 86 | 86 | if(!empty($this->getConfig()->isItemDetailedDate())){ |
| 87 | 87 | $return += [ |
| 88 | - self::DRIVER_MDATE_WRAPPER_INDEX => (new \DateTime())->setTimestamp($document[ self::DRIVER_MDATE_WRAPPER_INDEX ]->toDateTime() |
|
| 88 | + self::DRIVER_MDATE_WRAPPER_INDEX => (new \DateTime())->setTimestamp($document[ self::DRIVER_MDATE_WRAPPER_INDEX ]->toDateTime() |
|
| 89 | 89 | ->getTimestamp()), |
| 90 | - self::DRIVER_CDATE_WRAPPER_INDEX => (new \DateTime())->setTimestamp($document[ self::DRIVER_CDATE_WRAPPER_INDEX ]->toDateTime() |
|
| 90 | + self::DRIVER_CDATE_WRAPPER_INDEX => (new \DateTime())->setTimestamp($document[ self::DRIVER_CDATE_WRAPPER_INDEX ]->toDateTime() |
|
| 91 | 91 | ->getTimestamp()), |
| 92 | 92 | ]; |
| 93 | 93 | } |
@@ -112,23 +112,23 @@ discard block |
||
| 112 | 112 | if ($item instanceof Item) { |
| 113 | 113 | try { |
| 114 | 114 | $set = [ |
| 115 | - self::DRIVER_DATA_WRAPPER_INDEX => new Binary($this->encode($item->get()), Binary::TYPE_GENERIC), |
|
| 116 | - self::DRIVER_TAGS_WRAPPER_INDEX => new Binary($this->encode($item->getTags()), Binary::TYPE_GENERIC), |
|
| 117 | - self::DRIVER_EDATE_WRAPPER_INDEX => ($item->getTtl() > 0 ? new UTCDateTime((\time() + $item->getTtl()) * 1000) : new UTCDateTime(\time() * 1000)), |
|
| 115 | + self::DRIVER_DATA_WRAPPER_INDEX => new Binary($this->encode($item->get()), Binary::TYPE_GENERIC), |
|
| 116 | + self::DRIVER_TAGS_WRAPPER_INDEX => new Binary($this->encode($item->getTags()), Binary::TYPE_GENERIC), |
|
| 117 | + self::DRIVER_EDATE_WRAPPER_INDEX => ($item->getTtl() > 0 ? new UTCDateTime((\time() + $item->getTtl()) * 1000) : new UTCDateTime(\time() * 1000)), |
|
| 118 | 118 | ]; |
| 119 | 119 | |
| 120 | 120 | if(!empty($this->getConfig()->isItemDetailedDate())){ |
| 121 | 121 | $set += [ |
| 122 | - self::DRIVER_MDATE_WRAPPER_INDEX => ($item->getModificationDate() ? new UTCDateTime(($item->getModificationDate()->getTimestamp()) * 1000) : new UTCDateTime(\time() * 1000)), |
|
| 123 | - self::DRIVER_CDATE_WRAPPER_INDEX => ($item->getCreationDate() ? new UTCDateTime(($item->getCreationDate()->getTimestamp()) * 1000) : new UTCDateTime(\time() * 1000)), |
|
| 122 | + self::DRIVER_MDATE_WRAPPER_INDEX => ($item->getModificationDate() ? new UTCDateTime(($item->getModificationDate()->getTimestamp()) * 1000) : new UTCDateTime(\time() * 1000)), |
|
| 123 | + self::DRIVER_CDATE_WRAPPER_INDEX => ($item->getCreationDate() ? new UTCDateTime(($item->getCreationDate()->getTimestamp()) * 1000) : new UTCDateTime(\time() * 1000)), |
|
| 124 | 124 | ]; |
| 125 | 125 | } |
| 126 | 126 | $result = (array)$this->getCollection()->updateOne( |
| 127 | - ['_id' => $item->getEncodedKey()], |
|
| 128 | - [ |
|
| 127 | + ['_id' => $item->getEncodedKey()], |
|
| 128 | + [ |
|
| 129 | 129 | '$set' => $set, |
| 130 | - ], |
|
| 131 | - ['upsert' => true, 'multiple' => false] |
|
| 130 | + ], |
|
| 131 | + ['upsert' => true, 'multiple' => false] |
|
| 132 | 132 | ); |
| 133 | 133 | } catch (MongoDBException $e) { |
| 134 | 134 | throw new PhpfastcacheDriverException('Got an exception while trying to write data to MongoDB server', null, $e); |
@@ -229,13 +229,13 @@ discard block |
||
| 229 | 229 | $password = $this->getConfig()->getPassword(); |
| 230 | 230 | |
| 231 | 231 | return implode('', [ |
| 232 | - 'mongodb://', |
|
| 233 | - ($username ?: ''), |
|
| 234 | - ($password ? ":{$password}" : ''), |
|
| 235 | - ($username ? '@' : ''), |
|
| 236 | - $host, |
|
| 237 | - ($port !== 27017 ? ":{$port}" : ''), |
|
| 238 | - ($databaseName ? "/{$databaseName}" : '') |
|
| 232 | + 'mongodb://', |
|
| 233 | + ($username ?: ''), |
|
| 234 | + ($password ? ":{$password}" : ''), |
|
| 235 | + ($username ? '@' : ''), |
|
| 236 | + $host, |
|
| 237 | + ($port !== 27017 ? ":{$port}" : ''), |
|
| 238 | + ($databaseName ? "/{$databaseName}" : '') |
|
| 239 | 239 | ]); |
| 240 | 240 | } |
| 241 | 241 | |
@@ -259,15 +259,15 @@ discard block |
||
| 259 | 259 | public function getStats(): DriverStatistic |
| 260 | 260 | { |
| 261 | 261 | $serverStats = $this->instance->getManager()->executeCommand('phpFastCache', new Command([ |
| 262 | - 'serverStatus' => 1, |
|
| 263 | - 'recordStats' => 0, |
|
| 264 | - 'repl' => 0, |
|
| 265 | - 'metrics' => 0, |
|
| 262 | + 'serverStatus' => 1, |
|
| 263 | + 'recordStats' => 0, |
|
| 264 | + 'repl' => 0, |
|
| 265 | + 'metrics' => 0, |
|
| 266 | 266 | ]))->toArray()[ 0 ]; |
| 267 | 267 | |
| 268 | 268 | $collectionStats = $this->instance->getManager()->executeCommand('phpFastCache', new Command([ |
| 269 | - 'collStats' => (isset($this->getConfig()[ 'collectionName' ]) ? $this->getConfig()[ 'collectionName' ] : 'Cache'), |
|
| 270 | - 'verbose' => true, |
|
| 269 | + 'collStats' => (isset($this->getConfig()[ 'collectionName' ]) ? $this->getConfig()[ 'collectionName' ] : 'Cache'), |
|
| 270 | + 'verbose' => true, |
|
| 271 | 271 | ]))->toArray()[ 0 ]; |
| 272 | 272 | |
| 273 | 273 | $array_filter_recursive = function ($array, callable $callback = null) use (&$array_filter_recursive) { |
@@ -296,14 +296,14 @@ discard block |
||
| 296 | 296 | $collectionStats = $array_filter_recursive($collectionStats, $callback); |
| 297 | 297 | |
| 298 | 298 | $stats = (new DriverStatistic()) |
| 299 | - ->setInfo('MongoDB version ' . $serverStats->version . ', Uptime (in days): ' . \round($serverStats->uptime / 86400, |
|
| 300 | - 1) . "\n For more information see RawData.") |
|
| 301 | - ->setSize($collectionStats->size) |
|
| 302 | - ->setData(\implode(', ', \array_keys($this->itemInstances))) |
|
| 303 | - ->setRawData([ |
|
| 299 | + ->setInfo('MongoDB version ' . $serverStats->version . ', Uptime (in days): ' . \round($serverStats->uptime / 86400, |
|
| 300 | + 1) . "\n For more information see RawData.") |
|
| 301 | + ->setSize($collectionStats->size) |
|
| 302 | + ->setData(\implode(', ', \array_keys($this->itemInstances))) |
|
| 303 | + ->setRawData([ |
|
| 304 | 304 | 'serverStatus' => $serverStats, |
| 305 | 305 | 'collStats' => $collectionStats, |
| 306 | - ]); |
|
| 306 | + ]); |
|
| 307 | 307 | |
| 308 | 308 | return $stats; |
| 309 | 309 | } |
@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | * @author Fabio Covolo Mazzo (fabiocmazzo) <[email protected]> |
| 13 | 13 | * |
| 14 | 14 | */ |
| 15 | -declare(strict_types=1); |
|
| 15 | +declare(strict_types = 1); |
|
| 16 | 16 | |
| 17 | 17 | namespace Phpfastcache\Drivers\Mongodb; |
| 18 | 18 | |
@@ -78,16 +78,16 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | if ($document) { |
| 80 | 80 | $return = [ |
| 81 | - self::DRIVER_DATA_WRAPPER_INDEX => $this->decode($document[ self::DRIVER_DATA_WRAPPER_INDEX ]->getData()), |
|
| 82 | - self::DRIVER_TAGS_WRAPPER_INDEX => $this->decode($document[ self::DRIVER_TAGS_WRAPPER_INDEX ]->getData()), |
|
| 83 | - self::DRIVER_EDATE_WRAPPER_INDEX => (new \DateTime())->setTimestamp($document[ self::DRIVER_EDATE_WRAPPER_INDEX ]->toDateTime()->getTimestamp()), |
|
| 81 | + self::DRIVER_DATA_WRAPPER_INDEX => $this->decode($document[self::DRIVER_DATA_WRAPPER_INDEX]->getData()), |
|
| 82 | + self::DRIVER_TAGS_WRAPPER_INDEX => $this->decode($document[self::DRIVER_TAGS_WRAPPER_INDEX]->getData()), |
|
| 83 | + self::DRIVER_EDATE_WRAPPER_INDEX => (new \DateTime())->setTimestamp($document[self::DRIVER_EDATE_WRAPPER_INDEX]->toDateTime()->getTimestamp()), |
|
| 84 | 84 | ]; |
| 85 | 85 | |
| 86 | - if(!empty($this->getConfig()->isItemDetailedDate())){ |
|
| 86 | + if (!empty($this->getConfig()->isItemDetailedDate())) { |
|
| 87 | 87 | $return += [ |
| 88 | - self::DRIVER_MDATE_WRAPPER_INDEX => (new \DateTime())->setTimestamp($document[ self::DRIVER_MDATE_WRAPPER_INDEX ]->toDateTime() |
|
| 88 | + self::DRIVER_MDATE_WRAPPER_INDEX => (new \DateTime())->setTimestamp($document[self::DRIVER_MDATE_WRAPPER_INDEX]->toDateTime() |
|
| 89 | 89 | ->getTimestamp()), |
| 90 | - self::DRIVER_CDATE_WRAPPER_INDEX => (new \DateTime())->setTimestamp($document[ self::DRIVER_CDATE_WRAPPER_INDEX ]->toDateTime() |
|
| 90 | + self::DRIVER_CDATE_WRAPPER_INDEX => (new \DateTime())->setTimestamp($document[self::DRIVER_CDATE_WRAPPER_INDEX]->toDateTime() |
|
| 91 | 91 | ->getTimestamp()), |
| 92 | 92 | ]; |
| 93 | 93 | } |
@@ -117,13 +117,13 @@ discard block |
||
| 117 | 117 | self::DRIVER_EDATE_WRAPPER_INDEX => ($item->getTtl() > 0 ? new UTCDateTime((\time() + $item->getTtl()) * 1000) : new UTCDateTime(\time() * 1000)), |
| 118 | 118 | ]; |
| 119 | 119 | |
| 120 | - if(!empty($this->getConfig()->isItemDetailedDate())){ |
|
| 120 | + if (!empty($this->getConfig()->isItemDetailedDate())) { |
|
| 121 | 121 | $set += [ |
| 122 | 122 | self::DRIVER_MDATE_WRAPPER_INDEX => ($item->getModificationDate() ? new UTCDateTime(($item->getModificationDate()->getTimestamp()) * 1000) : new UTCDateTime(\time() * 1000)), |
| 123 | 123 | self::DRIVER_CDATE_WRAPPER_INDEX => ($item->getCreationDate() ? new UTCDateTime(($item->getCreationDate()->getTimestamp()) * 1000) : new UTCDateTime(\time() * 1000)), |
| 124 | 124 | ]; |
| 125 | 125 | } |
| 126 | - $result = (array)$this->getCollection()->updateOne( |
|
| 126 | + $result = (array) $this->getCollection()->updateOne( |
|
| 127 | 127 | ['_id' => $item->getEncodedKey()], |
| 128 | 128 | [ |
| 129 | 129 | '$set' => $set, |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | throw new PhpfastcacheDriverException('Got an exception while trying to write data to MongoDB server', null, $e); |
| 135 | 135 | } |
| 136 | 136 | |
| 137 | - return isset($result[ 'ok' ]) ? $result[ 'ok' ] == 1 : true; |
|
| 137 | + return isset($result['ok']) ? $result['ok'] == 1 : true; |
|
| 138 | 138 | } |
| 139 | 139 | |
| 140 | 140 | throw new PhpfastcacheInvalidArgumentException('Cross-Driver type confusion detected'); |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | $host = $this->getConfig()->getHost(); |
| 227 | 227 | $port = $this->getConfig()->getPort(); |
| 228 | 228 | $username = $this->getConfig()->getUsername(); |
| 229 | - $password = $this->getConfig()->getPassword(); |
|
| 229 | + $password = $this->getConfig()->getPassword(); |
|
| 230 | 230 | |
| 231 | 231 | return implode('', [ |
| 232 | 232 | 'mongodb://', |
@@ -263,14 +263,14 @@ discard block |
||
| 263 | 263 | 'recordStats' => 0, |
| 264 | 264 | 'repl' => 0, |
| 265 | 265 | 'metrics' => 0, |
| 266 | - ]))->toArray()[ 0 ]; |
|
| 266 | + ]))->toArray()[0]; |
|
| 267 | 267 | |
| 268 | 268 | $collectionStats = $this->instance->getManager()->executeCommand('phpFastCache', new Command([ |
| 269 | - 'collStats' => (isset($this->getConfig()[ 'collectionName' ]) ? $this->getConfig()[ 'collectionName' ] : 'Cache'), |
|
| 269 | + 'collStats' => (isset($this->getConfig()['collectionName']) ? $this->getConfig()['collectionName'] : 'Cache'), |
|
| 270 | 270 | 'verbose' => true, |
| 271 | - ]))->toArray()[ 0 ]; |
|
| 271 | + ]))->toArray()[0]; |
|
| 272 | 272 | |
| 273 | - $array_filter_recursive = function ($array, callable $callback = null) use (&$array_filter_recursive) { |
|
| 273 | + $array_filter_recursive = function($array, callable $callback = null) use (&$array_filter_recursive) { |
|
| 274 | 274 | $array = $callback($array); |
| 275 | 275 | |
| 276 | 276 | if (\is_object($array) || \is_array($array)) { |
@@ -282,12 +282,12 @@ discard block |
||
| 282 | 282 | return $array; |
| 283 | 283 | }; |
| 284 | 284 | |
| 285 | - $callback = function ($item) { |
|
| 285 | + $callback = function($item) { |
|
| 286 | 286 | /** |
| 287 | 287 | * Remove unserializable properties |
| 288 | 288 | */ |
| 289 | 289 | if ($item instanceof \MongoDB\BSON\UTCDateTime) { |
| 290 | - return (string)$item; |
|
| 290 | + return (string) $item; |
|
| 291 | 291 | } |
| 292 | 292 | return $item; |
| 293 | 293 | }; |
@@ -9,7 +9,7 @@ |
||
| 9 | 9 | namespace Phpfastcache\Drivers\Sqlite; |
| 10 | 10 | |
| 11 | 11 | use Phpfastcache\Config\{ |
| 12 | - ConfigurationOption, IOConfigurationOptionTrait |
|
| 12 | + ConfigurationOption, IOConfigurationOptionTrait |
|
| 13 | 13 | }; |
| 14 | 14 | |
| 15 | 15 | class Config extends ConfigurationOption |