@@ -49,7 +49,7 @@ |
||
| 49 | 49 | |
| 50 | 50 | if (!$cacheItem->isHit()) { |
| 51 | 51 | $cacheItem->set($callback()); |
| 52 | - if($expiresAfter){ |
|
| 52 | + if ($expiresAfter) { |
|
| 53 | 53 | $cacheItem->expiresAfter($expiresAfter); |
| 54 | 54 | } |
| 55 | 55 | $this->cacheInstance->save($cacheItem); |
@@ -16,7 +16,7 @@ |
||
| 16 | 16 | namespace Phpfastcache\Helper; |
| 17 | 17 | |
| 18 | 18 | use Phpfastcache\{ |
| 19 | - CacheManager, Event\EventInterface, EventManager |
|
| 19 | + CacheManager, Event\EventInterface, EventManager |
|
| 20 | 20 | }; |
| 21 | 21 | use Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface; |
| 22 | 22 | use Phpfastcache\Entities\DriverStatistic; |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | */ |
| 40 | 40 | public function __construct() |
| 41 | 41 | { |
| 42 | - $this->instances =& CacheManager::getInternalInstances(); |
|
| 42 | + $this->instances = & CacheManager::getInternalInstances(); |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | /** |
@@ -47,11 +47,11 @@ discard block |
||
| 47 | 47 | */ |
| 48 | 48 | protected function getGenericCallback(): \Closure |
| 49 | 49 | { |
| 50 | - return function ($method, $args) { |
|
| 50 | + return function($method, $args) { |
|
| 51 | 51 | $return = []; |
| 52 | 52 | foreach ($this->instances as $instance) { |
| 53 | 53 | $reflectionMethod = new \ReflectionMethod(\get_class($instance), $method); |
| 54 | - $return[ $instance->getDriverName() ] = $reflectionMethod->invokeArgs($instance, $args); |
|
| 54 | + $return[$instance->getDriverName()] = $reflectionMethod->invokeArgs($instance, $args); |
|
| 55 | 55 | } |
| 56 | 56 | return $return; |
| 57 | 57 | }; |
@@ -64,32 +64,32 @@ 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 | $command = 'git -C "' . __DIR__ . '" describe --abbrev=0 --tags'; |
| 73 | 73 | $stdout = shell_exec($command); |
| 74 | - if(\is_string($stdout)){ |
|
| 74 | + if (\is_string($stdout)) { |
|
| 75 | 75 | $version = \trim($stdout); |
| 76 | 76 | return $version; |
| 77 | 77 | } |
| 78 | - if(!$fallbackOnChangelog){ |
|
| 78 | + if (!$fallbackOnChangelog) { |
|
| 79 | 79 | throw new PhpfastcacheLogicException('The git command used to retrieve the PhpFastCache version has failed.'); |
| 80 | 80 | } |
| 81 | 81 | } |
| 82 | 82 | |
| 83 | - if(!$fallbackOnChangelog){ |
|
| 83 | + if (!$fallbackOnChangelog) { |
|
| 84 | 84 | throw new PhpfastcacheLogicException('shell_exec is disabled therefore the PhpFastCache version cannot be retrieved.'); |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | $changelogFilename = __DIR__ . '/../../CHANGELOG.md'; |
| 88 | - if(\file_exists($changelogFilename)){ |
|
| 88 | + if (\file_exists($changelogFilename)) { |
|
| 89 | 89 | $versionPrefix = '## '; |
| 90 | 90 | $changelog = \explode("\n", self::getPhpFastCacheChangelog()); |
| 91 | - foreach ($changelog as $line){ |
|
| 92 | - if(\strpos($line, $versionPrefix) === 0){ |
|
| 91 | + foreach ($changelog as $line) { |
|
| 92 | + if (\strpos($line, $versionPrefix) === 0) { |
|
| 93 | 93 | $version = \trim(\str_replace($versionPrefix, '', $line)); |
| 94 | 94 | return $version; |
| 95 | 95 | } |
@@ -107,13 +107,13 @@ discard block |
||
| 107 | 107 | { |
| 108 | 108 | static $hash; |
| 109 | 109 | |
| 110 | - if($hash && $cacheable){ |
|
| 110 | + if ($hash && $cacheable) { |
|
| 111 | 111 | return $hash; |
| 112 | 112 | } |
| 113 | 113 | |
| 114 | - if(\function_exists('shell_exec')){ |
|
| 114 | + if (\function_exists('shell_exec')) { |
|
| 115 | 115 | $stdout = \shell_exec('git rev-parse --short HEAD'); |
| 116 | - if(\is_string($stdout)){ |
|
| 116 | + if (\is_string($stdout)) { |
|
| 117 | 117 | $hash = \trim($stdout); |
| 118 | 118 | return "#{$hash}"; |
| 119 | 119 | } |
@@ -131,9 +131,9 @@ discard block |
||
| 131 | 131 | public static function getChangelog(): string |
| 132 | 132 | { |
| 133 | 133 | $changelogFilename = __DIR__ . '/../../CHANGELOG_API.md'; |
| 134 | - if(\file_exists($changelogFilename)){ |
|
| 134 | + if (\file_exists($changelogFilename)) { |
|
| 135 | 135 | $string = \str_replace(["\r\n", "\r"], "\n", \trim(\file_get_contents($changelogFilename))); |
| 136 | - if($string){ |
|
| 136 | + if ($string) { |
|
| 137 | 137 | return $string; |
| 138 | 138 | } |
| 139 | 139 | throw new PhpfastcacheLogicException('Unable to retrieve the PhpFastCache API changelog as it seems to be empty.'); |
@@ -150,9 +150,9 @@ discard block |
||
| 150 | 150 | public static function getPhpFastCacheChangelog(): string |
| 151 | 151 | { |
| 152 | 152 | $changelogFilename = __DIR__ . '/../../CHANGELOG.md'; |
| 153 | - if(\file_exists($changelogFilename)){ |
|
| 153 | + if (\file_exists($changelogFilename)) { |
|
| 154 | 154 | $string = \str_replace(["\r\n", "\r"], "\n", \trim(\file_get_contents($changelogFilename))); |
| 155 | - if($string){ |
|
| 155 | + if ($string) { |
|
| 156 | 156 | return $string; |
| 157 | 157 | } |
| 158 | 158 | throw new PhpfastcacheLogicException('Unable to retrieve the PhpFastCache changelog as it seems to be empty.'); |
@@ -115,10 +115,10 @@ |
||
| 115 | 115 | public function getPredisConfigArray(): array |
| 116 | 116 | { |
| 117 | 117 | return [ |
| 118 | - 'host' => $this->getHost(), |
|
| 119 | - 'port' => $this->getPort(), |
|
| 120 | - 'password' => $this->getPassword() ?: null, |
|
| 121 | - 'database' => $this->getDatabase(), |
|
| 118 | + 'host' => $this->getHost(), |
|
| 119 | + 'port' => $this->getPort(), |
|
| 120 | + 'password' => $this->getPassword() ?: null, |
|
| 121 | + 'database' => $this->getDatabase(), |
|
| 122 | 122 | ]; |
| 123 | 123 | } |
| 124 | 124 | |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | ); |
| 82 | 82 | |
| 83 | 83 | $this->instance->authenticate($authenticator); |
| 84 | - $this->setBucket($this->instance->openBucket( $clientConfig->getBucketName())); |
|
| 84 | + $this->setBucket($this->instance->openBucket($clientConfig->getBucketName())); |
|
| 85 | 85 | |
| 86 | 86 | return true; |
| 87 | 87 | } |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | */ |
| 115 | 115 | if ($item instanceof Item) { |
| 116 | 116 | try { |
| 117 | - return (bool)$this->getBucket()->upsert( |
|
| 117 | + return (bool) $this->getBucket()->upsert( |
|
| 118 | 118 | $item->getEncodedKey(), |
| 119 | 119 | $this->encode($this->driverPreWrap($item)), |
| 120 | 120 | ['expiry' => $item->getTtl()] |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | */ |
| 140 | 140 | if ($item instanceof Item) { |
| 141 | 141 | try { |
| 142 | - return (bool)$this->getBucket()->remove($item->getEncodedKey()); |
|
| 142 | + return (bool) $this->getBucket()->remove($item->getEncodedKey()); |
|
| 143 | 143 | } catch (\Couchbase\Exception $e) { |
| 144 | 144 | return $e->getCode() === COUCHBASE_KEY_ENOENT; |
| 145 | 145 | } |
@@ -187,10 +187,10 @@ discard block |
||
| 187 | 187 | $info = $this->getBucket()->manager()->info(); |
| 188 | 188 | |
| 189 | 189 | return (new DriverStatistic()) |
| 190 | - ->setSize($info[ 'basicStats' ][ 'diskUsed' ]) |
|
| 190 | + ->setSize($info['basicStats']['diskUsed']) |
|
| 191 | 191 | ->setRawData($info) |
| 192 | 192 | ->setData(\implode(', ', \array_keys($this->itemInstances))) |
| 193 | - ->setInfo('CouchBase version ' . $info[ 'nodes' ][ 0 ][ 'version' ] . ', Uptime (in days): ' . round($info[ 'nodes' ][ 0 ][ 'uptime' ] / 86400, |
|
| 193 | + ->setInfo('CouchBase version ' . $info['nodes'][0]['version'] . ', Uptime (in days): ' . round($info['nodes'][0]['uptime'] / 86400, |
|
| 194 | 194 | 1) . "\n For more information see RawData."); |
| 195 | 195 | } |
| 196 | 196 | } |
| 197 | 197 | \ No newline at end of file |
@@ -17,11 +17,11 @@ discard block |
||
| 17 | 17 | |
| 18 | 18 | use CouchbaseCluster as CouchbaseClient; |
| 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 Psr\Cache\CacheItemInterface; |
| 27 | 27 | |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | $authenticator->username($clientConfig->getUsername())->password($clientConfig->getPassword()); |
| 77 | 77 | |
| 78 | 78 | $this->instance = new CouchbaseClient( |
| 79 | - 'couchbase://' . $clientConfig->getHost() . ($clientConfig->getPort() ? ":{$clientConfig->getPort()}" : '') |
|
| 79 | + 'couchbase://' . $clientConfig->getHost() . ($clientConfig->getPort() ? ":{$clientConfig->getPort()}" : '') |
|
| 80 | 80 | ); |
| 81 | 81 | |
| 82 | 82 | $this->instance->authenticate($authenticator); |
@@ -114,9 +114,9 @@ discard block |
||
| 114 | 114 | if ($item instanceof Item) { |
| 115 | 115 | try { |
| 116 | 116 | return (bool)$this->getBucket()->upsert( |
| 117 | - $item->getEncodedKey(), |
|
| 118 | - $this->encode($this->driverPreWrap($item)), |
|
| 119 | - ['expiry' => $item->getTtl()] |
|
| 117 | + $item->getEncodedKey(), |
|
| 118 | + $this->encode($this->driverPreWrap($item)), |
|
| 119 | + ['expiry' => $item->getTtl()] |
|
| 120 | 120 | ); |
| 121 | 121 | } catch (\CouchbaseException $e) { |
| 122 | 122 | return false; |
@@ -186,10 +186,10 @@ discard block |
||
| 186 | 186 | $info = $this->getBucket()->manager()->info(); |
| 187 | 187 | |
| 188 | 188 | return (new DriverStatistic()) |
| 189 | - ->setSize($info[ 'basicStats' ][ 'diskUsed' ]) |
|
| 190 | - ->setRawData($info) |
|
| 191 | - ->setData(\implode(', ', \array_keys($this->itemInstances))) |
|
| 192 | - ->setInfo('CouchBase version ' . $info[ 'nodes' ][ 0 ][ 'version' ] . ', Uptime (in days): ' . round($info[ 'nodes' ][ 0 ][ 'uptime' ] / 86400, |
|
| 193 | - 1) . "\n For more information see RawData."); |
|
| 189 | + ->setSize($info[ 'basicStats' ][ 'diskUsed' ]) |
|
| 190 | + ->setRawData($info) |
|
| 191 | + ->setData(\implode(', ', \array_keys($this->itemInstances))) |
|
| 192 | + ->setInfo('CouchBase version ' . $info[ 'nodes' ][ 0 ][ 'version' ] . ', Uptime (in days): ' . round($info[ 'nodes' ][ 0 ][ 'uptime' ] / 86400, |
|
| 193 | + 1) . "\n For more information see RawData."); |
|
| 194 | 194 | } |
| 195 | 195 | } |
| 196 | 196 | \ No newline at end of file |