@@ -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\Memstatic; |
| 17 | 17 | |
@@ -60,8 +60,8 @@ discard block |
||
| 60 | 60 | protected function driverRead(CacheItemInterface $item) |
| 61 | 61 | { |
| 62 | 62 | $key = \md5($item->getKey()); |
| 63 | - if (isset($this->staticStack[ $key ])) { |
|
| 64 | - return $this->staticStack[ $key ]; |
|
| 63 | + if (isset($this->staticStack[$key])) { |
|
| 64 | + return $this->staticStack[$key]; |
|
| 65 | 65 | } |
| 66 | 66 | return null; |
| 67 | 67 | } |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | * Check for Cross-Driver type confusion |
| 78 | 78 | */ |
| 79 | 79 | if ($item instanceof Item) { |
| 80 | - $this->staticStack[ \md5($item->getKey()) ] = $this->driverPreWrap($item); |
|
| 80 | + $this->staticStack[\md5($item->getKey())] = $this->driverPreWrap($item); |
|
| 81 | 81 | return true; |
| 82 | 82 | } |
| 83 | 83 | |
@@ -96,8 +96,8 @@ discard block |
||
| 96 | 96 | */ |
| 97 | 97 | if ($item instanceof Item) { |
| 98 | 98 | $key = \md5($item->getKey()); |
| 99 | - if (isset($this->staticStack[ $key ])) { |
|
| 100 | - unset($this->staticStack[ $key ]); |
|
| 99 | + if (isset($this->staticStack[$key])) { |
|
| 100 | + unset($this->staticStack[$key]); |
|
| 101 | 101 | return true; |
| 102 | 102 | } |
| 103 | 103 | return false; |
@@ -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 | |
@@ -129,9 +129,9 @@ discard block |
||
| 129 | 129 | { |
| 130 | 130 | $stat = new DriverStatistic(); |
| 131 | 131 | $stat->setInfo('[Memstatic] A memory static driver') |
| 132 | - ->setSize(mb_strlen(\serialize($this->staticStack))) |
|
| 133 | - ->setData(\implode(', ', \array_keys($this->itemInstances))) |
|
| 134 | - ->setRawData($this->staticStack); |
|
| 132 | + ->setSize(mb_strlen(\serialize($this->staticStack))) |
|
| 133 | + ->setData(\implode(', ', \array_keys($this->itemInstances))) |
|
| 134 | + ->setRawData($this->staticStack); |
|
| 135 | 135 | |
| 136 | 136 | return $stat; |
| 137 | 137 | } |
@@ -11,7 +11,7 @@ |
||
| 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\Memcached; |
| 17 | 17 | |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | use Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface; |
| 20 | 20 | use Phpfastcache\Drivers\Memcached\Driver as MemcachedDriver; |
| 21 | 21 | use Phpfastcache\Exceptions\{ |
| 22 | - PhpfastcacheInvalidArgumentException, PhpfastcacheInvalidArgumentTypeException |
|
| 22 | + PhpfastcacheInvalidArgumentException, PhpfastcacheInvalidArgumentTypeException |
|
| 23 | 23 | }; |
| 24 | 24 | |
| 25 | 25 | /** |
@@ -152,7 +152,7 @@ |
||
| 152 | 152 | */ |
| 153 | 153 | if(!empty($server[ 'path' ]) && !$this->instance->addServer($server[ 'path' ], 0)){ |
| 154 | 154 | $this->fallback = true; |
| 155 | - }else if (!empty($server[ 'host' ]) && !$this->instance->addServer($server[ 'host' ], $server[ 'port' ])) { |
|
| 155 | + } else if (!empty($server[ 'host' ]) && !$this->instance->addServer($server[ 'host' ], $server[ 'port' ])) { |
|
| 156 | 156 | $this->fallback = true; |
| 157 | 157 | } |
| 158 | 158 | |
@@ -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\Memcached; |
| 17 | 17 | |
@@ -85,14 +85,14 @@ discard block |
||
| 85 | 85 | /** |
| 86 | 86 | * If path is provided we consider it as an UNIX Socket |
| 87 | 87 | */ |
| 88 | - if(!empty($server[ 'path' ]) && !$this->instance->addServer($server[ 'path' ], 0)){ |
|
| 88 | + if (!empty($server['path']) && !$this->instance->addServer($server['path'], 0)) { |
|
| 89 | 89 | $this->fallback = true; |
| 90 | - }else if (!empty($server[ 'host' ]) && !$this->instance->addServer($server[ 'host' ], $server[ 'port' ])) { |
|
| 90 | + } else if (!empty($server['host']) && !$this->instance->addServer($server['host'], $server['port'])) { |
|
| 91 | 91 | $this->fallback = true; |
| 92 | 92 | } |
| 93 | 93 | |
| 94 | - if (!empty($server[ 'saslUser' ]) && !empty($server[ 'saslPassword' ])) { |
|
| 95 | - $this->instance->setSaslAuthData($server[ 'saslUser' ], $server[ 'saslPassword' ]); |
|
| 94 | + if (!empty($server['saslUser']) && !empty($server['saslPassword'])) { |
|
| 95 | + $this->instance->setSaslAuthData($server['saslUser'], $server['saslPassword']); |
|
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | } catch (\Exception $e) { |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | * any error if not connected ... |
| 106 | 106 | */ |
| 107 | 107 | $version = $this->instance->getVersion(); |
| 108 | - if(!$version || $this->instance->getResultCode() !== MemcachedSoftware::RES_SUCCESS){ |
|
| 108 | + if (!$version || $this->instance->getResultCode() !== MemcachedSoftware::RES_SUCCESS) { |
|
| 109 | 109 | throw new PhpfastcacheDriverException('Memcached seems to not be connected'); |
| 110 | 110 | } |
| 111 | 111 | return true; |
@@ -188,16 +188,16 @@ discard block |
||
| 188 | 188 | public function getStats(): DriverStatistic |
| 189 | 189 | { |
| 190 | 190 | $stats = current($this->instance->getStats()); |
| 191 | - $stats[ 'uptime' ] = (isset($stats[ 'uptime' ]) ? $stats[ 'uptime' ] : 0); |
|
| 192 | - $stats[ 'version' ] = (isset($stats[ 'version' ]) ? $stats[ 'version' ] : $this->instance->getVersion()); |
|
| 193 | - $stats[ 'bytes' ] = (isset($stats[ 'bytes' ]) ? $stats[ 'version' ] : 0); |
|
| 191 | + $stats['uptime'] = (isset($stats['uptime']) ? $stats['uptime'] : 0); |
|
| 192 | + $stats['version'] = (isset($stats['version']) ? $stats['version'] : $this->instance->getVersion()); |
|
| 193 | + $stats['bytes'] = (isset($stats['bytes']) ? $stats['version'] : 0); |
|
| 194 | 194 | |
| 195 | - $date = (new \DateTime())->setTimestamp(\time() - $stats[ 'uptime' ]); |
|
| 195 | + $date = (new \DateTime())->setTimestamp(\time() - $stats['uptime']); |
|
| 196 | 196 | |
| 197 | 197 | return (new DriverStatistic()) |
| 198 | 198 | ->setData(\implode(', ', \array_keys($this->itemInstances))) |
| 199 | - ->setInfo(\sprintf("The memcache daemon v%s is up since %s.\n For more information see RawData.", $stats[ 'version' ], $date->format(DATE_RFC2822))) |
|
| 199 | + ->setInfo(\sprintf("The memcache daemon v%s is up since %s.\n For more information see RawData.", $stats['version'], $date->format(DATE_RFC2822))) |
|
| 200 | 200 | ->setRawData($stats) |
| 201 | - ->setSize((int)$stats[ 'bytes' ]); |
|
| 201 | + ->setSize((int) $stats['bytes']); |
|
| 202 | 202 | } |
| 203 | 203 | } |
| 204 | 204 | \ No newline at end of file |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | use Phpfastcache\Core\Pool\{DriverBaseTrait, ExtendedCacheItemPoolInterface}; |
| 21 | 21 | use Phpfastcache\Entities\DriverStatistic; |
| 22 | 22 | use Phpfastcache\Exceptions\{ |
| 23 | - PhpfastcacheInvalidArgumentException, PhpfastcacheDriverException |
|
| 23 | + PhpfastcacheInvalidArgumentException, PhpfastcacheDriverException |
|
| 24 | 24 | }; |
| 25 | 25 | use Phpfastcache\Util\{ArrayObject, MemcacheDriverCollisionDetectorTrait}; |
| 26 | 26 | use Psr\Cache\CacheItemInterface; |
@@ -74,13 +74,13 @@ discard block |
||
| 74 | 74 | |
| 75 | 75 | if (\count($servers) < 1) { |
| 76 | 76 | $servers = [ |
| 77 | - [ |
|
| 77 | + [ |
|
| 78 | 78 | 'host' => $this->getConfig()->getHost(), |
| 79 | 79 | 'path' => $this->getConfig()->getPath(), |
| 80 | 80 | 'port' => $this->getConfig()->getPort(), |
| 81 | 81 | 'saslUser' => $this->getConfig()->getSaslUser() ?: false, |
| 82 | 82 | 'saslPassword' => $this->getConfig()->getSaslPassword() ?: false, |
| 83 | - ], |
|
| 83 | + ], |
|
| 84 | 84 | ]; |
| 85 | 85 | } |
| 86 | 86 | |
@@ -197,9 +197,9 @@ discard block |
||
| 197 | 197 | $date = (new \DateTime())->setTimestamp(\time() - $stats[ 'uptime' ]); |
| 198 | 198 | |
| 199 | 199 | return (new DriverStatistic()) |
| 200 | - ->setData(\implode(', ', \array_keys($this->itemInstances))) |
|
| 201 | - ->setInfo(\sprintf("The memcache daemon v%s is up since %s.\n For more information see RawData.", $stats[ 'version' ], $date->format(DATE_RFC2822))) |
|
| 202 | - ->setRawData($stats) |
|
| 203 | - ->setSize((int)$stats[ 'bytes' ]); |
|
| 200 | + ->setData(\implode(', ', \array_keys($this->itemInstances))) |
|
| 201 | + ->setInfo(\sprintf("The memcache daemon v%s is up since %s.\n For more information see RawData.", $stats[ 'version' ], $date->format(DATE_RFC2822))) |
|
| 202 | + ->setRawData($stats) |
|
| 203 | + ->setSize((int)$stats[ 'bytes' ]); |
|
| 204 | 204 | } |
| 205 | 205 | } |
| 206 | 206 | \ No newline at end of file |
@@ -11,7 +11,7 @@ |
||
| 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\Mongodb; |
| 17 | 17 | |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | use Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface; |
| 20 | 20 | use Phpfastcache\Drivers\Mongodb\Driver as MongodbDriver; |
| 21 | 21 | use Phpfastcache\Exceptions\{ |
| 22 | - PhpfastcacheInvalidArgumentException, PhpfastcacheInvalidArgumentTypeException |
|
| 22 | + PhpfastcacheInvalidArgumentException, PhpfastcacheInvalidArgumentTypeException |
|
| 23 | 23 | }; |
| 24 | 24 | |
| 25 | 25 | /** |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | * @author Lucas Brucksch <[email protected]> |
| 11 | 11 | * |
| 12 | 12 | */ |
| 13 | -declare(strict_types=1); |
|
| 13 | +declare(strict_types = 1); |
|
| 14 | 14 | |
| 15 | 15 | namespace Phpfastcache\Drivers\Zendshm; |
| 16 | 16 | |
@@ -18,7 +18,7 @@ |
||
| 18 | 18 | use Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface; |
| 19 | 19 | use Phpfastcache\Drivers\Zendshm\Driver as ZendSHMDriver; |
| 20 | 20 | use Phpfastcache\Exceptions\{ |
| 21 | - PhpfastcacheInvalidArgumentException, PhpfastcacheInvalidArgumentTypeException |
|
| 21 | + PhpfastcacheInvalidArgumentException, PhpfastcacheInvalidArgumentTypeException |
|
| 22 | 22 | }; |
| 23 | 23 | |
| 24 | 24 | /** |
@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | * @author Lucas Brucksch <[email protected]> |
| 11 | 11 | * |
| 12 | 12 | */ |
| 13 | -declare(strict_types=1); |
|
| 13 | +declare(strict_types = 1); |
|
| 14 | 14 | |
| 15 | 15 | namespace Phpfastcache\Drivers\Zendshm; |
| 16 | 16 | |
@@ -129,11 +129,11 @@ discard block |
||
| 129 | 129 | */ |
| 130 | 130 | public function getStats(): DriverStatistic |
| 131 | 131 | { |
| 132 | - $stats = (array)zend_shm_cache_info(); |
|
| 132 | + $stats = (array) zend_shm_cache_info(); |
|
| 133 | 133 | return (new DriverStatistic()) |
| 134 | 134 | ->setData(\implode(', ', \array_keys($this->itemInstances))) |
| 135 | - ->setInfo(\sprintf("The Zend memory have %d item(s) in cache.\n For more information see RawData.", $stats[ 'items_total' ])) |
|
| 135 | + ->setInfo(\sprintf("The Zend memory have %d item(s) in cache.\n For more information see RawData.", $stats['items_total'])) |
|
| 136 | 136 | ->setRawData($stats) |
| 137 | - ->setSize($stats[ 'memory_total' ]); |
|
| 137 | + ->setSize($stats['memory_total']); |
|
| 138 | 138 | } |
| 139 | 139 | } |
| 140 | 140 | \ No newline at end of file |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | use Phpfastcache\Core\Pool\{DriverBaseTrait, ExtendedCacheItemPoolInterface}; |
| 18 | 18 | use Phpfastcache\Entities\DriverStatistic; |
| 19 | 19 | use Phpfastcache\Exceptions\{ |
| 20 | - PhpfastcacheInvalidArgumentException |
|
| 20 | + PhpfastcacheInvalidArgumentException |
|
| 21 | 21 | }; |
| 22 | 22 | use Psr\Cache\CacheItemInterface; |
| 23 | 23 | |
@@ -131,9 +131,9 @@ discard block |
||
| 131 | 131 | { |
| 132 | 132 | $stats = (array)zend_shm_cache_info(); |
| 133 | 133 | return (new DriverStatistic()) |
| 134 | - ->setData(\implode(', ', \array_keys($this->itemInstances))) |
|
| 135 | - ->setInfo(\sprintf("The Zend memory have %d item(s) in cache.\n For more information see RawData.", $stats[ 'items_total' ])) |
|
| 136 | - ->setRawData($stats) |
|
| 137 | - ->setSize($stats[ 'memory_total' ]); |
|
| 134 | + ->setData(\implode(', ', \array_keys($this->itemInstances))) |
|
| 135 | + ->setInfo(\sprintf("The Zend memory have %d item(s) in cache.\n For more information see RawData.", $stats[ 'items_total' ])) |
|
| 136 | + ->setRawData($stats) |
|
| 137 | + ->setSize($stats[ 'memory_total' ]); |
|
| 138 | 138 | } |
| 139 | 139 | } |
| 140 | 140 | \ No newline at end of file |
@@ -11,7 +11,7 @@ |
||
| 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\Leveldb; |
| 17 | 17 | |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | use Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface; |
| 20 | 20 | use Phpfastcache\Drivers\Leveldb\Driver as LeveldbDriver; |
| 21 | 21 | use Phpfastcache\Exceptions\{ |
| 22 | - PhpfastcacheInvalidArgumentException, PhpfastcacheInvalidArgumentTypeException |
|
| 22 | + PhpfastcacheInvalidArgumentException, PhpfastcacheInvalidArgumentTypeException |
|
| 23 | 23 | }; |
| 24 | 24 | |
| 25 | 25 | /** |
@@ -14,4 +14,4 @@ |
||
| 14 | 14 | * @package phpFastCache\Config |
| 15 | 15 | * @see ConfigurationOption |
| 16 | 16 | */ |
| 17 | -class Config extends ConfigurationOption{} |
|
| 18 | 17 | \ No newline at end of file |
| 18 | +class Config extends ConfigurationOption {} |
|
| 19 | 19 | \ No newline at end of file |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | |
| 105 | 105 | if(array_key_exists($property, $array)){ |
| 106 | 106 | $this->$property = &$array[ $property ]; |
| 107 | - }else{ |
|
| 107 | + } else{ |
|
| 108 | 108 | $array[ $property ] = &$this->$property; |
| 109 | 109 | } |
| 110 | 110 | } |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | */ |
| 122 | 122 | $value = $this->{lcfirst(substr($method, 3))}; |
| 123 | 123 | $this->{$method}($value); |
| 124 | - }catch(\TypeError $e){ |
|
| 124 | + } catch(\TypeError $e){ |
|
| 125 | 125 | $typeHintGot = \is_object($value) ? \get_class($value) : \gettype($value); |
| 126 | 126 | $reflectionMethod = new \ReflectionMethod($this, $method); |
| 127 | 127 | $parameter = $reflectionMethod->getParameters()[0] ?? null; |
@@ -100,9 +100,9 @@ discard block |
||
| 100 | 100 | */ |
| 101 | 101 | if(array_diff_key($array, get_object_vars($this))){ |
| 102 | 102 | throw new PhpfastcacheInvalidConfigurationException(\sprintf( |
| 103 | - 'Invalid option(s) for the config %s: %s', |
|
| 104 | - static::class, |
|
| 105 | - implode(', ', array_keys(array_diff_key($array, get_object_vars($this)))) |
|
| 103 | + 'Invalid option(s) for the config %s: %s', |
|
| 104 | + static::class, |
|
| 105 | + implode(', ', array_keys(array_diff_key($array, get_object_vars($this)))) |
|
| 106 | 106 | )); |
| 107 | 107 | } |
| 108 | 108 | |
@@ -134,10 +134,10 @@ discard block |
||
| 134 | 134 | $typeHintExpected = ($parameter instanceof \ReflectionParameter ? ($parameter->getType() === 'object' ? $parameter->getClass() : $parameter->getType()) : 'Unknown type'); |
| 135 | 135 | |
| 136 | 136 | throw new PhpfastcacheInvalidConfigurationException(\sprintf( |
| 137 | - 'Invalid type hint found for "%s", expected "%s" got "%s"', |
|
| 138 | - lcfirst(substr($method, 3)), |
|
| 139 | - $typeHintExpected, |
|
| 140 | - $typeHintGot |
|
| 137 | + 'Invalid type hint found for "%s", expected "%s" got "%s"', |
|
| 138 | + lcfirst(substr($method, 3)), |
|
| 139 | + $typeHintExpected, |
|
| 140 | + $typeHintGot |
|
| 141 | 141 | )); |
| 142 | 142 | } |
| 143 | 143 | } |
@@ -331,9 +331,9 @@ discard block |
||
| 331 | 331 | { |
| 332 | 332 | if($fallbackConfig !== null && !($fallbackConfig instanceof self)){ |
| 333 | 333 | throw new PhpfastcacheInvalidArgumentException(\sprintf( |
| 334 | - 'Invalid argument "%s" for %s', |
|
| 335 | - gettype($fallbackConfig) === 'object' ? get_class($fallbackConfig) : gettype($fallbackConfig), |
|
| 336 | - __METHOD__ |
|
| 334 | + 'Invalid argument "%s" for %s', |
|
| 335 | + gettype($fallbackConfig) === 'object' ? get_class($fallbackConfig) : gettype($fallbackConfig), |
|
| 336 | + __METHOD__ |
|
| 337 | 337 | )); |
| 338 | 338 | } |
| 339 | 339 | $this->fallbackConfig = $fallbackConfig; |
@@ -432,10 +432,10 @@ discard block |
||
| 432 | 432 | * by opening a pull request :) |
| 433 | 433 | */ |
| 434 | 434 | static $safeFileExtensions = [ |
| 435 | - 'txt', |
|
| 436 | - 'cache', |
|
| 437 | - 'db', |
|
| 438 | - 'pfc', |
|
| 435 | + 'txt', |
|
| 436 | + 'cache', |
|
| 437 | + 'db', |
|
| 438 | + 'pfc', |
|
| 439 | 439 | ]; |
| 440 | 440 | |
| 441 | 441 | if (\strpos($cacheFileExtension, '.') !== false) { |
@@ -443,7 +443,7 @@ discard block |
||
| 443 | 443 | } |
| 444 | 444 | if (!\in_array($cacheFileExtension, $safeFileExtensions, true)) { |
| 445 | 445 | throw new PhpfastcacheInvalidConfigurationException( |
| 446 | - "{$cacheFileExtension} is not a safe extension, currently allowed extension: " . \implode(', ', $safeFileExtensions) |
|
| 446 | + "{$cacheFileExtension} is not a safe extension, currently allowed extension: " . \implode(', ', $safeFileExtensions) |
|
| 447 | 447 | ); |
| 448 | 448 | } |
| 449 | 449 | |
@@ -92,33 +92,33 @@ discard block |
||
| 92 | 92 | public function __construct(...$args) |
| 93 | 93 | { |
| 94 | 94 | parent::__construct(...$args); |
| 95 | - $array =& $this->getArray(); |
|
| 95 | + $array = & $this->getArray(); |
|
| 96 | 96 | |
| 97 | 97 | /** |
| 98 | 98 | * Detect unwanted keys and throw an exception. |
| 99 | 99 | * No more kidding now, it's 21th century. |
| 100 | 100 | */ |
| 101 | - if(array_diff_key($array, get_object_vars($this))){ |
|
| 101 | + if (array_diff_key($array, get_object_vars($this))) { |
|
| 102 | 102 | throw new PhpfastcacheInvalidConfigurationException(\sprintf( |
| 103 | 103 | 'Invalid option(s) for the config %s: %s', |
| 104 | 104 | static::class, |
| 105 | - implode(', ', array_keys(array_diff_key($array, get_object_vars($this)))) |
|
| 105 | + implode(', ', array_keys(array_diff_key($array, get_object_vars($this)))) |
|
| 106 | 106 | )); |
| 107 | 107 | } |
| 108 | 108 | |
| 109 | 109 | foreach (get_object_vars($this) as $property => $value) { |
| 110 | 110 | |
| 111 | - if(array_key_exists($property, $array)){ |
|
| 112 | - $this->$property = &$array[ $property ]; |
|
| 113 | - }else{ |
|
| 114 | - $array[ $property ] = &$this->$property; |
|
| 111 | + if (array_key_exists($property, $array)) { |
|
| 112 | + $this->$property = &$array[$property]; |
|
| 113 | + } else { |
|
| 114 | + $array[$property] = &$this->$property; |
|
| 115 | 115 | } |
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | foreach (get_class_methods($this) as $method) { |
| 119 | - if(strpos($method, 'set') === 0){ |
|
| 119 | + if (strpos($method, 'set') === 0) { |
|
| 120 | 120 | $value = null; |
| 121 | - try{ |
|
| 121 | + try { |
|
| 122 | 122 | /** |
| 123 | 123 | * We use property instead of getter |
| 124 | 124 | * because of is/get conditions and |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | */ |
| 128 | 128 | $value = $this->{lcfirst(substr($method, 3))}; |
| 129 | 129 | $this->{$method}($value); |
| 130 | - }catch(\TypeError $e){ |
|
| 130 | + } catch (\TypeError $e) { |
|
| 131 | 131 | $typeHintGot = \is_object($value) ? \get_class($value) : \gettype($value); |
| 132 | 132 | $reflectionMethod = new \ReflectionMethod($this, $method); |
| 133 | 133 | $parameter = $reflectionMethod->getParameters()[0] ?? null; |
@@ -216,7 +216,7 @@ discard block |
||
| 216 | 216 | */ |
| 217 | 217 | public function setIgnoreSymfonyNotice(bool $ignoreSymfonyNotice): self |
| 218 | 218 | { |
| 219 | - if($ignoreSymfonyNotice){ |
|
| 219 | + if ($ignoreSymfonyNotice) { |
|
| 220 | 220 | \trigger_error('Configuration option "ignoreSymfonyNotice" is deprecated as of the V7', E_USER_DEPRECATED); |
| 221 | 221 | } |
| 222 | 222 | $this->ignoreSymfonyNotice = $ignoreSymfonyNotice; |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | */ |
| 332 | 332 | public function setFallbackConfig($fallbackConfig): self |
| 333 | 333 | { |
| 334 | - if($fallbackConfig !== null && !($fallbackConfig instanceof self)){ |
|
| 334 | + if ($fallbackConfig !== null && !($fallbackConfig instanceof self)) { |
|
| 335 | 335 | throw new PhpfastcacheInvalidArgumentException(\sprintf( |
| 336 | 336 | 'Invalid argument "%s" for %s', |
| 337 | 337 | gettype($fallbackConfig) === 'object' ? get_class($fallbackConfig) : gettype($fallbackConfig), |