@@ -51,5 +51,5 @@ |
||
51 | 51 | |
52 | 52 | if (class_exists('Composer\Autoload\ClassLoader')) { |
53 | 53 | trigger_error('Your project already makes use of Composer. You SHOULD use the composer dependency "phpfastcache/phpfastcache" instead of hard-autoloading.', |
54 | - E_USER_WARNING); |
|
54 | + E_USER_WARNING); |
|
55 | 55 | } |
56 | 56 | \ No newline at end of file |
@@ -18,9 +18,9 @@ discard block |
||
18 | 18 | /** |
19 | 19 | * Register Autoload |
20 | 20 | */ |
21 | -spl_autoload_register(function ($entity) { |
|
21 | +spl_autoload_register(function($entity) { |
|
22 | 22 | $module = explode('\\', $entity, 2); |
23 | - if (!in_array($module[ 0 ], ['phpFastCache', 'Psr'])) { |
|
23 | + if (!in_array($module[0], ['phpFastCache', 'Psr'])) { |
|
24 | 24 | /** |
25 | 25 | * Not a part of phpFastCache file |
26 | 26 | * then we return here. |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | |
33 | 33 | if (is_readable($path)) { |
34 | 34 | require_once $path; |
35 | - }else{ |
|
35 | + } else { |
|
36 | 36 | trigger_error('Cannot locate the Psr/Cache files', E_USER_ERROR); |
37 | 37 | return; |
38 | 38 | } |
@@ -273,7 +273,7 @@ |
||
273 | 273 | |
274 | 274 | if (!is_dir($path)) { |
275 | 275 | throw new phpFastCacheDriverException("Can't read PATH:" . $path, 94); |
276 | - }else{ |
|
276 | + } else{ |
|
277 | 277 | $size = Directory::dirSize($path); |
278 | 278 | } |
279 | 279 |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | if (!class_exists('phpFastCache\CacheManager')) { |
19 | 19 | echo "[FAIL] Autoload failed to find the CacheManager\n"; |
20 | 20 | $status = 255; |
21 | -}else{ |
|
21 | +} else { |
|
22 | 22 | echo "[PASS] Autoload successfully found the CacheManager\n"; |
23 | 23 | } |
24 | 24 | |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | if (!interface_exists('Psr\Cache\CacheItemInterface')) { |
29 | 29 | echo "[FAIL] Autoload failed to find the Psr CacheItemInterface\n"; |
30 | 30 | $status = 255; |
31 | -}else{ |
|
31 | +} else { |
|
32 | 32 | echo "[PASS] Autoload successfully found the Psr CacheItemInterface\n"; |
33 | 33 | } |
34 | 34 |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | if (!class_exists('phpFastCache\CacheManager')) { |
19 | 19 | echo "[FAIL] Autoload failed to find the CacheManager\n"; |
20 | 20 | $status = 255; |
21 | -}else{ |
|
21 | +} else{ |
|
22 | 22 | echo "[PASS] Autoload successfully found the CacheManager\n"; |
23 | 23 | } |
24 | 24 | |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | if (!interface_exists('Psr\Cache\CacheItemInterface')) { |
29 | 29 | echo "[FAIL] Autoload failed to find the Psr CacheItemInterface\n"; |
30 | 30 | $status = 255; |
31 | -}else{ |
|
31 | +} else{ |
|
32 | 32 | echo "[PASS] Autoload successfully found the Psr CacheItemInterface\n"; |
33 | 33 | } |
34 | 34 |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | |
158 | 158 | /** |
159 | 159 | * @param \Psr\Cache\CacheItemInterface $item |
160 | - * @return mixed |
|
160 | + * @return boolean |
|
161 | 161 | * @throws \InvalidArgumentException |
162 | 162 | */ |
163 | 163 | public function save(CacheItemInterface $item) |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | } |
176 | 176 | |
177 | 177 | /** |
178 | - * @return mixed|null |
|
178 | + * @return boolean |
|
179 | 179 | * @throws \InvalidArgumentException |
180 | 180 | */ |
181 | 181 | public function commit() |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | } else { |
86 | 86 | $item->setHit(true); |
87 | 87 | } |
88 | - }else{ |
|
88 | + } else{ |
|
89 | 89 | $item->expiresAfter(abs((int) $this->getConfig()[ 'defaultTtl' ])); |
90 | 90 | } |
91 | 91 | |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | { |
230 | 230 | if (!array_key_exists($item->getKey(), $this->itemInstances)) { |
231 | 231 | $this->itemInstances[ $item->getKey() ] = $item; |
232 | - }else if(spl_object_hash($item) !== spl_object_hash($this->itemInstances[ $item->getKey() ])){ |
|
232 | + } else if(spl_object_hash($item) !== spl_object_hash($this->itemInstances[ $item->getKey() ])){ |
|
233 | 233 | throw new \RuntimeException('Spl object hash mismatches ! You probably tried to save a detached item which has been already retrieved from cache.'); |
234 | 234 | } |
235 | 235 |
@@ -67,13 +67,13 @@ discard block |
||
67 | 67 | $driverArray = $this->driverRead($item); |
68 | 68 | |
69 | 69 | if ($driverArray) { |
70 | - if(!is_array($driverArray)){ |
|
70 | + if (!is_array($driverArray)) { |
|
71 | 71 | throw new phpFastCacheCoreException(sprintf('The driverRead method returned an unexpected variable type: %s', gettype($driverArray))); |
72 | 72 | } |
73 | 73 | $item->set($this->driverUnwrapData($driverArray)); |
74 | 74 | $item->expiresAt($this->driverUnwrapEdate($driverArray)); |
75 | 75 | |
76 | - if($this->config['itemDetailedDate']){ |
|
76 | + if ($this->config['itemDetailedDate']) { |
|
77 | 77 | |
78 | 78 | /** |
79 | 79 | * If the itemDetailedDate has been |
@@ -97,8 +97,8 @@ discard block |
||
97 | 97 | } else { |
98 | 98 | $item->setHit(true); |
99 | 99 | } |
100 | - }else{ |
|
101 | - $item->expiresAfter(abs((int) $this->getConfig()[ 'defaultTtl' ])); |
|
100 | + } else { |
|
101 | + $item->expiresAfter(abs((int) $this->getConfig()['defaultTtl'])); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | } |
@@ -111,9 +111,9 @@ discard block |
||
111 | 111 | * @param $this ExtendedCacheItemPoolInterface |
112 | 112 | * @param $this ExtendedCacheItemInterface |
113 | 113 | */ |
114 | - $this->eventManager->dispatch('CacheGetItem', $this, $this->itemInstances[ $key ]); |
|
114 | + $this->eventManager->dispatch('CacheGetItem', $this, $this->itemInstances[$key]); |
|
115 | 115 | |
116 | - return $this->itemInstances[ $key ]; |
|
116 | + return $this->itemInstances[$key]; |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | /** |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | public function setItem(CacheItemInterface $item) |
125 | 125 | { |
126 | 126 | if ($this->getClassNamespace() . '\\Item' === get_class($item)) { |
127 | - $this->itemInstances[ $item->getKey() ] = $item; |
|
127 | + $this->itemInstances[$item->getKey()] = $item; |
|
128 | 128 | |
129 | 129 | return $this; |
130 | 130 | } else { |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | { |
142 | 142 | $collection = []; |
143 | 143 | foreach ($keys as $key) { |
144 | - $collection[ $key ] = $this->getItem($key); |
|
144 | + $collection[$key] = $this->getItem($key); |
|
145 | 145 | } |
146 | 146 | |
147 | 147 | return $collection; |
@@ -230,8 +230,8 @@ discard block |
||
230 | 230 | * @var ExtendedCacheItemInterface $item |
231 | 231 | */ |
232 | 232 | if (!array_key_exists($item->getKey(), $this->itemInstances)) { |
233 | - $this->itemInstances[ $item->getKey() ] = $item; |
|
234 | - } else if(spl_object_hash($item) !== spl_object_hash($this->itemInstances[ $item->getKey() ])){ |
|
233 | + $this->itemInstances[$item->getKey()] = $item; |
|
234 | + } else if (spl_object_hash($item) !== spl_object_hash($this->itemInstances[$item->getKey()])) { |
|
235 | 235 | throw new \RuntimeException('Spl object hash mismatches ! You probably tried to save a detached item which has been already retrieved from cache.'); |
236 | 236 | } |
237 | 237 | |
@@ -261,8 +261,8 @@ discard block |
||
261 | 261 | public function saveDeferred(CacheItemInterface $item) |
262 | 262 | { |
263 | 263 | if (!array_key_exists($item->getKey(), $this->itemInstances)) { |
264 | - $this->itemInstances[ $item->getKey() ] = $item; |
|
265 | - }else if(spl_object_hash($item) !== spl_object_hash($this->itemInstances[ $item->getKey() ])){ |
|
264 | + $this->itemInstances[$item->getKey()] = $item; |
|
265 | + } else if (spl_object_hash($item) !== spl_object_hash($this->itemInstances[$item->getKey()])) { |
|
266 | 266 | throw new \RuntimeException('Spl object hash mismatches ! You probably tried to save a detached item which has been already retrieved from cache.'); |
267 | 267 | } |
268 | 268 | |
@@ -273,7 +273,7 @@ discard block |
||
273 | 273 | */ |
274 | 274 | $this->eventManager->dispatch('CacheSaveDeferredItem', $this, $item); |
275 | 275 | |
276 | - return $this->deferredList[ $item->getKey() ] = $item; |
|
276 | + return $this->deferredList[$item->getKey()] = $item; |
|
277 | 277 | } |
278 | 278 | |
279 | 279 | /** |
@@ -293,7 +293,7 @@ discard block |
||
293 | 293 | foreach ($this->deferredList as $key => $item) { |
294 | 294 | $result = $this->save($item); |
295 | 295 | if ($return !== false) { |
296 | - unset($this->deferredList[ $key ]); |
|
296 | + unset($this->deferredList[$key]); |
|
297 | 297 | $return = $result; |
298 | 298 | } |
299 | 299 | } |
@@ -115,7 +115,7 @@ |
||
115 | 115 | |
116 | 116 | |
117 | 117 | /** |
118 | - * @param $file |
|
118 | + * @param string $file |
|
119 | 119 | * @return string |
120 | 120 | * @throws \Exception |
121 | 121 | */ |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | $tmpFilename = realpath(dirname($file) . '/tmp_' . md5( |
112 | 112 | str_shuffle(uniqid($this->getDriverName(), false)) |
113 | 113 | . str_shuffle(uniqid($this->getDriverName(), false)) |
114 | - )); |
|
114 | + )); |
|
115 | 115 | |
116 | 116 | $f = fopen($tmpFilename, 'w+'); |
117 | 117 | flock($f, LOCK_EX); |
@@ -196,9 +196,9 @@ discard block |
||
196 | 196 | public function driverPreWrap(ExtendedCacheItemInterface $item) |
197 | 197 | { |
198 | 198 | $wrap = [ |
199 | - self::DRIVER_DATA_WRAPPER_INDEX => $item->get(), |
|
200 | - self::DRIVER_TAGS_WRAPPER_INDEX => $item->getTags(), |
|
201 | - self::DRIVER_EDATE_WRAPPER_INDEX => $item->getExpirationDate(), |
|
199 | + self::DRIVER_DATA_WRAPPER_INDEX => $item->get(), |
|
200 | + self::DRIVER_TAGS_WRAPPER_INDEX => $item->getTags(), |
|
201 | + self::DRIVER_EDATE_WRAPPER_INDEX => $item->getExpirationDate(), |
|
202 | 202 | ]; |
203 | 203 | |
204 | 204 | if($this->config['itemDetailedDate']){ |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | if (is_array($config_name)) { |
53 | 53 | $this->config = array_merge($this->config, $config_name); |
54 | 54 | } else { |
55 | - $this->config[ $config_name ] = $value; |
|
55 | + $this->config[$config_name] = $value; |
|
56 | 56 | } |
57 | 57 | } |
58 | 58 | |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | */ |
108 | 108 | $this->eventManager->dispatch('CacheWriteFileOnDisk', $this, $file, $secureFileManipulation); |
109 | 109 | |
110 | - if($secureFileManipulation){ |
|
110 | + if ($secureFileManipulation) { |
|
111 | 111 | $tmpFilename = realpath(dirname($file) . '/tmp_' . md5( |
112 | 112 | str_shuffle(uniqid($this->getDriverName(), false)) |
113 | 113 | . str_shuffle(uniqid($this->getDriverName(), false)) |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | flock($f, LOCK_UN); |
120 | 120 | fclose($f); |
121 | 121 | rename($tmpFilename, $file); |
122 | - }else{ |
|
122 | + } else { |
|
123 | 123 | $f = fopen($file, 'w+'); |
124 | 124 | $octetWritten = fwrite($f, $data); |
125 | 125 | fclose($f); |
@@ -201,16 +201,16 @@ discard block |
||
201 | 201 | self::DRIVER_EDATE_WRAPPER_INDEX => $item->getExpirationDate(), |
202 | 202 | ]; |
203 | 203 | |
204 | - if($this->config['itemDetailedDate']){ |
|
205 | - $wrap[ self::DRIVER_MDATE_WRAPPER_INDEX ] = new \DateTime(); |
|
204 | + if ($this->config['itemDetailedDate']) { |
|
205 | + $wrap[self::DRIVER_MDATE_WRAPPER_INDEX] = new \DateTime(); |
|
206 | 206 | /** |
207 | 207 | * If the creation date exists |
208 | 208 | * reuse it else set a new Date |
209 | 209 | */ |
210 | - $wrap[ self::DRIVER_CDATE_WRAPPER_INDEX ] = $item->getCreationDate() ?: new \DateTime(); |
|
211 | - }else{ |
|
212 | - $wrap[ self::DRIVER_MDATE_WRAPPER_INDEX ] = null; |
|
213 | - $wrap[ self::DRIVER_CDATE_WRAPPER_INDEX ] = null; |
|
210 | + $wrap[self::DRIVER_CDATE_WRAPPER_INDEX] = $item->getCreationDate() ?: new \DateTime(); |
|
211 | + } else { |
|
212 | + $wrap[self::DRIVER_MDATE_WRAPPER_INDEX] = null; |
|
213 | + $wrap[self::DRIVER_CDATE_WRAPPER_INDEX] = null; |
|
214 | 214 | } |
215 | 215 | |
216 | 216 | return $wrap; |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | */ |
223 | 223 | public function driverUnwrapData(array $wrapper) |
224 | 224 | { |
225 | - return $wrapper[ self::DRIVER_DATA_WRAPPER_INDEX ]; |
|
225 | + return $wrapper[self::DRIVER_DATA_WRAPPER_INDEX]; |
|
226 | 226 | } |
227 | 227 | |
228 | 228 | /** |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | */ |
232 | 232 | public function driverUnwrapTags(array $wrapper) |
233 | 233 | { |
234 | - return $wrapper[ self::DRIVER_TAGS_WRAPPER_INDEX ]; |
|
234 | + return $wrapper[self::DRIVER_TAGS_WRAPPER_INDEX]; |
|
235 | 235 | } |
236 | 236 | |
237 | 237 | |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | */ |
242 | 242 | public function driverUnwrapEdate(array $wrapper) |
243 | 243 | { |
244 | - return $wrapper[ self::DRIVER_EDATE_WRAPPER_INDEX ]; |
|
244 | + return $wrapper[self::DRIVER_EDATE_WRAPPER_INDEX]; |
|
245 | 245 | } |
246 | 246 | |
247 | 247 | /** |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | */ |
251 | 251 | public function driverUnwrapCdate(array $wrapper) |
252 | 252 | { |
253 | - return $wrapper[ self::DRIVER_CDATE_WRAPPER_INDEX ]; |
|
253 | + return $wrapper[self::DRIVER_CDATE_WRAPPER_INDEX]; |
|
254 | 254 | } |
255 | 255 | |
256 | 256 | |
@@ -260,7 +260,7 @@ discard block |
||
260 | 260 | */ |
261 | 261 | public function driverUnwrapMdate(array $wrapper) |
262 | 262 | { |
263 | - return $wrapper[ self::DRIVER_MDATE_WRAPPER_INDEX ]; |
|
263 | + return $wrapper[self::DRIVER_MDATE_WRAPPER_INDEX]; |
|
264 | 264 | } |
265 | 265 | |
266 | 266 | /** |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | * on tags item, it can leads |
286 | 286 | * to an infinite recursive calls |
287 | 287 | */ |
288 | - if(strpos($item->getKey(), self::DRIVER_TAGS_KEY_PREFIX ) === 0){ |
|
288 | + if (strpos($item->getKey(), self::DRIVER_TAGS_KEY_PREFIX) === 0) { |
|
289 | 289 | throw new \LogicException('Trying to set tag(s) to an Tag item index: ' . $item->getKey()); |
290 | 290 | } |
291 | 291 | |
@@ -328,7 +328,7 @@ discard block |
||
328 | 328 | foreach ($tagsItems as $tagsItem) { |
329 | 329 | $data = (array) $tagsItem->get(); |
330 | 330 | |
331 | - unset($data[ $item->getKey() ]); |
|
331 | + unset($data[$item->getKey()]); |
|
332 | 332 | $tagsItem->set($data); |
333 | 333 | |
334 | 334 | /** |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | flock($f, LOCK_UN); |
120 | 120 | fclose($f); |
121 | 121 | rename($tmpFilename, $file); |
122 | - }else{ |
|
122 | + } else{ |
|
123 | 123 | $f = fopen($file, 'w+'); |
124 | 124 | $octetWritten = fwrite($f, $data); |
125 | 125 | fclose($f); |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | * reuse it else set a new Date |
209 | 209 | */ |
210 | 210 | $wrap[ self::DRIVER_CDATE_WRAPPER_INDEX ] = $item->getCreationDate() ?: new \DateTime(); |
211 | - }else{ |
|
211 | + } else{ |
|
212 | 212 | $wrap[ self::DRIVER_MDATE_WRAPPER_INDEX ] = null; |
213 | 213 | $wrap[ self::DRIVER_CDATE_WRAPPER_INDEX ] = null; |
214 | 214 | } |
@@ -25,7 +25,6 @@ discard block |
||
25 | 25 | public $tmp = []; |
26 | 26 | |
27 | 27 | /** |
28 | - * @param bool $skip_create_path |
|
29 | 28 | * @param $config |
30 | 29 | * @return string |
31 | 30 | * @throws \Exception |
@@ -118,7 +117,7 @@ discard block |
||
118 | 117 | } |
119 | 118 | |
120 | 119 | /** |
121 | - * @param $keyword |
|
120 | + * @param string|false $keyword |
|
122 | 121 | * @param bool $skip |
123 | 122 | * @return string |
124 | 123 | * @throws phpFastCacheDriverException |
@@ -165,7 +164,7 @@ discard block |
||
165 | 164 | |
166 | 165 | /** |
167 | 166 | * @param $filename |
168 | - * @return mixed |
|
167 | + * @return string |
|
169 | 168 | */ |
170 | 169 | protected static function cleanFileName($filename) |
171 | 170 | { |
@@ -180,7 +179,7 @@ discard block |
||
180 | 179 | } |
181 | 180 | |
182 | 181 | /** |
183 | - * @param $path |
|
182 | + * @param string $path |
|
184 | 183 | * @param bool $create |
185 | 184 | * @throws \Exception |
186 | 185 | */ |
@@ -185,9 +185,9 @@ |
||
185 | 185 | protected static function cleanFileName($filename) |
186 | 186 | { |
187 | 187 | $regex = [ |
188 | - '/[\?\[\]\/\\\=\<\>\:\;\,\'\"\&\$\#\*\(\)\|\~\`\!\{\}]/', |
|
189 | - '/\.$/', |
|
190 | - '/^\./', |
|
188 | + '/[\?\[\]\/\\\=\<\>\:\;\,\'\"\&\$\#\*\(\)\|\~\`\!\{\}]/', |
|
189 | + '/\.$/', |
|
190 | + '/^\./', |
|
191 | 191 | ]; |
192 | 192 | $replace = ['-', '', '']; |
193 | 193 |
@@ -34,30 +34,30 @@ discard block |
||
34 | 34 | { |
35 | 35 | $tmp_dir = rtrim(ini_get('upload_tmp_dir') ? ini_get('upload_tmp_dir') : sys_get_temp_dir(), '\\/') . DIRECTORY_SEPARATOR . 'phpfastcache'; |
36 | 36 | |
37 | - if (!isset($this->config[ 'path' ]) || $this->config[ 'path' ] == '') { |
|
37 | + if (!isset($this->config['path']) || $this->config['path'] == '') { |
|
38 | 38 | if (self::isPHPModule()) { |
39 | 39 | $path = $tmp_dir; |
40 | 40 | } else { |
41 | - $document_root_path = rtrim($_SERVER[ 'DOCUMENT_ROOT' ], '/') . '/../'; |
|
42 | - $path = isset($_SERVER[ 'DOCUMENT_ROOT' ]) && is_writable($document_root_path) ? $document_root_path : rtrim(__DIR__, '/') . 'PathSeekerTrait.php/'; |
|
41 | + $document_root_path = rtrim($_SERVER['DOCUMENT_ROOT'], '/') . '/../'; |
|
42 | + $path = isset($_SERVER['DOCUMENT_ROOT']) && is_writable($document_root_path) ? $document_root_path : rtrim(__DIR__, '/') . 'PathSeekerTrait.php/'; |
|
43 | 43 | } |
44 | 44 | |
45 | - if ($this->config[ 'path' ] != '') { |
|
46 | - $path = $this->config[ 'path' ]; |
|
45 | + if ($this->config['path'] != '') { |
|
46 | + $path = $this->config['path']; |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | } else { |
50 | - $path = $this->config[ 'path' ]; |
|
50 | + $path = $this->config['path']; |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | if ($getBasePath === true) { |
54 | 54 | return $path; |
55 | 55 | } |
56 | 56 | |
57 | - $securityKey = array_key_exists('securityKey', $this->config) ? $this->config[ 'securityKey' ] : ''; |
|
57 | + $securityKey = array_key_exists('securityKey', $this->config) ? $this->config['securityKey'] : ''; |
|
58 | 58 | if (!$securityKey || $securityKey === 'auto') { |
59 | - if (isset($_SERVER[ 'HTTP_HOST' ])) { |
|
60 | - $securityKey = preg_replace('/^www./', '', strtolower(str_replace(':', '_', $_SERVER[ 'HTTP_HOST' ]))); |
|
59 | + if (isset($_SERVER['HTTP_HOST'])) { |
|
60 | + $securityKey = preg_replace('/^www./', '', strtolower(str_replace(':', '_', $_SERVER['HTTP_HOST']))); |
|
61 | 61 | } else { |
62 | 62 | $securityKey = ($this->isPHPModule() ? 'web' : 'cli'); |
63 | 63 | } |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | $full_pathx = md5($full_path); |
74 | 74 | |
75 | 75 | |
76 | - if (!isset($this->tmp[ $full_pathx ])) { |
|
76 | + if (!isset($this->tmp[$full_pathx])) { |
|
77 | 77 | |
78 | 78 | if (!@file_exists($full_path) || !@is_writable($full_path)) { |
79 | 79 | if (!@file_exists($full_path)) { |
@@ -97,8 +97,8 @@ discard block |
||
97 | 97 | } |
98 | 98 | } |
99 | 99 | |
100 | - $this->tmp[ $full_pathx ] = true; |
|
101 | - $this->htaccessGen($full_path, array_key_exists('htaccess', $this->config) ? $this->config[ 'htaccess' ] : false); |
|
100 | + $this->tmp[$full_pathx] = true; |
|
101 | + $this->htaccessGen($full_path, array_key_exists('htaccess', $this->config) ? $this->config['htaccess'] : false); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | return realpath($full_path); |
@@ -171,10 +171,10 @@ discard block |
||
171 | 171 | */ |
172 | 172 | public function setChmodAuto() |
173 | 173 | { |
174 | - if (!isset($this->config[ 'default_chmod' ]) || $this->config[ 'default_chmod' ] == '' || is_null($this->config[ 'default_chmod' ])) { |
|
174 | + if (!isset($this->config['default_chmod']) || $this->config['default_chmod'] == '' || is_null($this->config['default_chmod'])) { |
|
175 | 175 | return 0777; |
176 | 176 | } else { |
177 | - return $this->config[ 'default_chmod' ]; |
|
177 | + return $this->config['default_chmod']; |
|
178 | 178 | } |
179 | 179 | } |
180 | 180 | |
@@ -204,7 +204,7 @@ discard block |
||
204 | 204 | if ($create === true) { |
205 | 205 | if (!is_writable($path)) { |
206 | 206 | try { |
207 | - if(!chmod($path, 0777)){ |
|
207 | + if (!chmod($path, 0777)) { |
|
208 | 208 | throw new phpFastCacheDriverException('Chmod failed on : ' . $path); |
209 | 209 | } |
210 | 210 | } catch (phpFastCacheDriverException $e) { |
@@ -57,7 +57,7 @@ |
||
57 | 57 | |
58 | 58 | /** |
59 | 59 | * @param \Psr\Cache\CacheItemInterface $item |
60 | - * @return mixed |
|
60 | + * @return boolean |
|
61 | 61 | * @throws \InvalidArgumentException |
62 | 62 | */ |
63 | 63 | public function driverWrite(CacheItemInterface $item) |
@@ -79,9 +79,9 @@ discard block |
||
79 | 79 | protected function driverRead(CacheItemInterface $item) |
80 | 80 | { |
81 | 81 | return [ |
82 | - self::DRIVER_DATA_WRAPPER_INDEX => false, |
|
83 | - self::DRIVER_TAGS_WRAPPER_INDEX => [], |
|
84 | - self::DRIVER_TIME_WRAPPER_INDEX => new \DateTime(), |
|
82 | + self::DRIVER_DATA_WRAPPER_INDEX => false, |
|
83 | + self::DRIVER_TAGS_WRAPPER_INDEX => [], |
|
84 | + self::DRIVER_TIME_WRAPPER_INDEX => new \DateTime(), |
|
85 | 85 | ]; |
86 | 86 | } |
87 | 87 | /** |
@@ -130,9 +130,9 @@ discard block |
||
130 | 130 | { |
131 | 131 | $stat = new driverStatistic(); |
132 | 132 | $stat->setInfo('[Devfalse] A void info string') |
133 | - ->setSize(0) |
|
134 | - ->setData(implode(', ', array_keys($this->itemInstances))) |
|
135 | - ->setRawData(false); |
|
133 | + ->setSize(0) |
|
134 | + ->setData(implode(', ', array_keys($this->itemInstances))) |
|
135 | + ->setRawData(false); |
|
136 | 136 | |
137 | 137 | return $stat; |
138 | 138 | } |
@@ -29,7 +29,7 @@ |
||
29 | 29 | |
30 | 30 | /** |
31 | 31 | * Item constructor. |
32 | - * @param \phpFastCache\Drivers\Memcache\Driver $driver |
|
32 | + * @param Driver $driver |
|
33 | 33 | * @param $key |
34 | 34 | * @throws \InvalidArgumentException |
35 | 35 | */ |
@@ -29,7 +29,7 @@ |
||
29 | 29 | |
30 | 30 | /** |
31 | 31 | * Item constructor. |
32 | - * @param \phpFastCache\Drivers\Apc\Driver $driver |
|
32 | + * @param Driver $driver |
|
33 | 33 | * @param $key |
34 | 34 | * @throws \InvalidArgumentException |
35 | 35 | */ |
@@ -67,9 +67,9 @@ discard block |
||
67 | 67 | */ |
68 | 68 | public function getCreationDate() |
69 | 69 | { |
70 | - if($this->driver->getConfig()['itemDetailedDate']){ |
|
70 | + if ($this->driver->getConfig()['itemDetailedDate']) { |
|
71 | 71 | return $this->creationDate; |
72 | - }else{ |
|
72 | + } else { |
|
73 | 73 | throw new \LogicException('Cannot access to the creation date when the "itemDetailedDate" configuration is disabled.'); |
74 | 74 | } |
75 | 75 | } |
@@ -81,10 +81,10 @@ discard block |
||
81 | 81 | */ |
82 | 82 | public function setCreationDate(\DateTimeInterface $date) |
83 | 83 | { |
84 | - if($this->driver->getConfig()['itemDetailedDate']){ |
|
84 | + if ($this->driver->getConfig()['itemDetailedDate']) { |
|
85 | 85 | $this->creationDate = $date; |
86 | 86 | return $this; |
87 | - }else{ |
|
87 | + } else { |
|
88 | 88 | throw new \LogicException('Cannot access to the creation date when the "itemDetailedDate" configuration is disabled.'); |
89 | 89 | } |
90 | 90 | } |
@@ -95,9 +95,9 @@ discard block |
||
95 | 95 | */ |
96 | 96 | public function getModificationDate() |
97 | 97 | { |
98 | - if($this->driver->getConfig()['itemDetailedDate']){ |
|
98 | + if ($this->driver->getConfig()['itemDetailedDate']) { |
|
99 | 99 | return $this->modificationDate; |
100 | - }else{ |
|
100 | + } else { |
|
101 | 101 | throw new \LogicException('Cannot access to the modification date when the "itemDetailedDate" configuration is disabled.'); |
102 | 102 | } |
103 | 103 | } |
@@ -109,10 +109,10 @@ discard block |
||
109 | 109 | */ |
110 | 110 | public function setModificationDate(\DateTimeInterface $date) |
111 | 111 | { |
112 | - if($this->driver->getConfig()['itemDetailedDate']){ |
|
112 | + if ($this->driver->getConfig()['itemDetailedDate']) { |
|
113 | 113 | $this->modificationDate = $date; |
114 | 114 | return $this; |
115 | - }else{ |
|
115 | + } else { |
|
116 | 116 | throw new \LogicException('Cannot access to the creation date when the "itemDetailedDate" configuration is disabled.'); |
117 | 117 | } |
118 | 118 | } |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | public function removeTag($tagName) |
280 | 280 | { |
281 | 281 | if (($key = array_search($tagName, $this->tags)) !== false) { |
282 | - unset($this->tags[ $key ]); |
|
282 | + unset($this->tags[$key]); |
|
283 | 283 | $this->removedTags[] = $tagName; |
284 | 284 | } |
285 | 285 | |
@@ -345,7 +345,7 @@ discard block |
||
345 | 345 | final public function __debugInfo() |
346 | 346 | { |
347 | 347 | $info = get_object_vars($this); |
348 | - $info[ 'driver' ] = 'object(' . get_class($info[ 'driver' ]) . ')'; |
|
348 | + $info['driver'] = 'object(' . get_class($info['driver']) . ')'; |
|
349 | 349 | |
350 | 350 | return (array) $info; |
351 | 351 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | { |
70 | 70 | if($this->driver->getConfig()['itemDetailedDate']){ |
71 | 71 | return $this->creationDate; |
72 | - }else{ |
|
72 | + } else{ |
|
73 | 73 | throw new \LogicException('Cannot access to the creation date when the "itemDetailedDate" configuration is disabled.'); |
74 | 74 | } |
75 | 75 | } |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | if($this->driver->getConfig()['itemDetailedDate']){ |
85 | 85 | $this->creationDate = $date; |
86 | 86 | return $this; |
87 | - }else{ |
|
87 | + } else{ |
|
88 | 88 | throw new \LogicException('Cannot access to the creation date when the "itemDetailedDate" configuration is disabled.'); |
89 | 89 | } |
90 | 90 | } |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | { |
98 | 98 | if($this->driver->getConfig()['itemDetailedDate']){ |
99 | 99 | return $this->modificationDate; |
100 | - }else{ |
|
100 | + } else{ |
|
101 | 101 | throw new \LogicException('Cannot access to the modification date when the "itemDetailedDate" configuration is disabled.'); |
102 | 102 | } |
103 | 103 | } |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | if($this->driver->getConfig()['itemDetailedDate']){ |
113 | 113 | $this->modificationDate = $date; |
114 | 114 | return $this; |
115 | - }else{ |
|
115 | + } else{ |
|
116 | 116 | throw new \LogicException('Cannot access to the creation date when the "itemDetailedDate" configuration is disabled.'); |
117 | 117 | } |
118 | 118 | } |