@@ -137,18 +137,18 @@ discard block |
||
| 137 | 137 | */ |
| 138 | 138 | protected function driverConnect() |
| 139 | 139 | { |
| 140 | - try{ |
|
| 141 | - $server = isset($this->config[ 'ssdb' ]) ? $this->config[ 'ssdb' ] : [ |
|
| 140 | + try { |
|
| 141 | + $server = isset($this->config['ssdb']) ? $this->config['ssdb'] : [ |
|
| 142 | 142 | 'host' => "127.0.0.1", |
| 143 | 143 | 'port' => 8888, |
| 144 | 144 | 'password' => '', |
| 145 | 145 | 'timeout' => 2000, |
| 146 | 146 | ]; |
| 147 | 147 | |
| 148 | - $host = $server[ 'host' ]; |
|
| 149 | - $port = isset($server[ 'port' ]) ? (int) $server[ 'port' ] : 8888; |
|
| 150 | - $password = isset($server[ 'password' ]) ? $server[ 'password' ] : ''; |
|
| 151 | - $timeout = !empty($server[ 'timeout' ]) ? (int) $server[ 'timeout' ] : 2000; |
|
| 148 | + $host = $server['host']; |
|
| 149 | + $port = isset($server['port']) ? (int) $server['port'] : 8888; |
|
| 150 | + $password = isset($server['password']) ? $server['password'] : ''; |
|
| 151 | + $timeout = !empty($server['timeout']) ? (int) $server['timeout'] : 2000; |
|
| 152 | 152 | $this->instance = new SimpleSSDB($host, $port, $timeout); |
| 153 | 153 | if (!empty($password)) { |
| 154 | 154 | $this->instance->auth($password); |
@@ -159,8 +159,8 @@ discard block |
||
| 159 | 159 | } else { |
| 160 | 160 | return true; |
| 161 | 161 | } |
| 162 | - }catch(SSDBException $e){ |
|
| 163 | - throw new phpFastCacheDriverCheckException('Ssdb failed to connect with error: '. $e->getMessage(), 0 , $e); |
|
| 162 | + } catch (SSDBException $e) { |
|
| 163 | + throw new phpFastCacheDriverCheckException('Ssdb failed to connect with error: ' . $e->getMessage(), 0, $e); |
|
| 164 | 164 | } |
| 165 | 165 | } |
| 166 | 166 | |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | 'fallback' => 'files', //Fall back when old driver is not support |
| 57 | 57 | 'securityKey' => 'auto', |
| 58 | 58 | 'htaccess' => true, |
| 59 | - 'path' => '',// if not set will be the value of sys_get_temp_dir() |
|
| 59 | + 'path' => '', // if not set will be the value of sys_get_temp_dir() |
|
| 60 | 60 | "limited_memory_each_object" => 4096, // maximum size (bytes) of object store in memory |
| 61 | 61 | "compress_data" => false, // compress stored data, if the backend supports it |
| 62 | 62 | ]; |
@@ -87,16 +87,16 @@ discard block |
||
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | $instance = crc32($driver . serialize($config)); |
| 90 | - if (!isset(self::$instances[ $instance ])) { |
|
| 90 | + if (!isset(self::$instances[$instance])) { |
|
| 91 | 91 | $badPracticeOmeter[$driver] = 1; |
| 92 | 92 | $class = self::getNamespacePath() . $driver . '\Driver'; |
| 93 | - self::$instances[ $instance ] = new $class($config); |
|
| 94 | - } else if(++$badPracticeOmeter[$driver] >= 5){ |
|
| 93 | + self::$instances[$instance] = new $class($config); |
|
| 94 | + } else if (++$badPracticeOmeter[$driver] >= 5) { |
|
| 95 | 95 | trigger_error('[' . $driver . '] Calling many times CacheManager::getInstance() for already instanced drivers is a bad practice and have a significant impact on performances. |
| 96 | 96 | See https://github.com/PHPSocialNetwork/phpfastcache/wiki/[V5]-Why-calling-getInstance%28%29-each-time-is-a-bad-practice-%3F'); |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - return self::$instances[ $instance ]; |
|
| 99 | + return self::$instances[$instance]; |
|
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | /** |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | */ |
| 130 | 130 | public static function __callStatic($name, $arguments) |
| 131 | 131 | { |
| 132 | - $options = (array_key_exists(0, $arguments) && is_array($arguments) ? $arguments[ 0 ] : []); |
|
| 132 | + $options = (array_key_exists(0, $arguments) && is_array($arguments) ? $arguments[0] : []); |
|
| 133 | 133 | |
| 134 | 134 | return self::getInstance($name, $options); |
| 135 | 135 | } |
@@ -171,7 +171,7 @@ discard block |
||
| 171 | 171 | if (is_array($name)) { |
| 172 | 172 | self::$config = array_merge(self::$config, $name); |
| 173 | 173 | } else { |
| 174 | - self::$config[ $name ] = $value; |
|
| 174 | + self::$config[$name] = $value; |
|
| 175 | 175 | } |
| 176 | 176 | } |
| 177 | 177 | |
@@ -23,10 +23,10 @@ |
||
| 23 | 23 | if (!is_object($driverInstance)) { |
| 24 | 24 | echo '[FAIL] CacheManager::getInstance() returned an invalid variable type:' . gettype($driverInstance) . "\n"; |
| 25 | 25 | $status = 1; |
| 26 | -}else if(!($driverInstance instanceof CacheItemPoolInterface)){ |
|
| 26 | +} else if (!($driverInstance instanceof CacheItemPoolInterface)) { |
|
| 27 | 27 | echo '[FAIL] CacheManager::getInstance() returned an invalid class:' . get_class($driverInstance) . "\n"; |
| 28 | 28 | $status = 1; |
| 29 | -}else{ |
|
| 29 | +} else { |
|
| 30 | 30 | echo '[PASS] CacheManager::getInstance() returned a valid CacheItemPoolInterface object: ' . get_class($driverInstance) . "\n"; |
| 31 | 31 | } |
| 32 | 32 | |