Skip to content

Commit 20f09cd

Browse files
committed
Var type adjustements
1 parent 5773ed0 commit 20f09cd

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

src/phpFastCache/CacheManager.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
use phpFastCache\Cache\ExtendedCacheItemPoolInterface;
1818
use phpFastCache\Core\DriverAbstract;
1919
use phpFastCache\Exceptions\phpFastCacheDriverCheckException;
20-
use CouchbaseCluster;
2120

2221
/**
2322
* Class CacheManager
@@ -57,8 +56,8 @@ class CacheManager
5756
'default_chmod' => 0777, // 0777 recommended
5857
'path' => '',// if not set will be the value of sys_get_temp_dir()
5958
'fallback' => false, //Fall back when old driver is not support
60-
"limited_memory_each_object" => 4096, // maximum size (bytes) of object store in memory
61-
"compress_data" => false, // compress stored data, if the backend supports it
59+
'limited_memory_each_object' => 4096, // maximum size (bytes) of object store in memory
60+
'compress_data' => false, // compress stored data, if the backend supports it
6261
];
6362

6463
/**
@@ -181,6 +180,7 @@ public static function setNamespacePath($path)
181180
* @param $name
182181
* @param string $value
183182
* @deprecated Method "setup" is deprecated and will be removed in 5.1. Use method "setDefaultConfig" instead.
183+
* @throws \InvalidArgumentException
184184
*/
185185
public static function setup($name, $value = '')
186186
{
@@ -191,6 +191,7 @@ public static function setup($name, $value = '')
191191
/**
192192
* @param $name string|array
193193
* @param mixed $value
194+
* @throws \InvalidArgumentException
194195
*/
195196
public static function setDefaultConfig($name, $value = null)
196197
{

src/phpFastCache/Core/PathSeekerTrait.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function getPath($getBasePath = false)
6767
$securityKey .= '/';
6868
}
6969

70-
$securityKey = $this->cleanFileName($securityKey);
70+
$securityKey = static::cleanFileName($securityKey);
7171

7272
$full_path = rtrim($path, '/') . '/' . $securityKey;
7373
$full_pathx = md5($full_path);
@@ -201,18 +201,18 @@ protected static function cleanFileName($filename)
201201
*/
202202
protected function htaccessGen($path, $create = true)
203203
{
204-
if ($create == true) {
204+
if ($create === true) {
205205
if (!is_writable($path)) {
206206
try {
207-
chmod($path, 0777);
207+
if(!chmod($path, 0777)){
208+
throw new phpFastCacheDriverException('Chmod failed on : ' . $path);
209+
}
208210
} catch (phpFastCacheDriverException $e) {
209-
throw new phpFastCacheDriverException('PLEASE CHMOD ' . $path . ' - 0777 OR ANY WRITABLE PERMISSION!',
210-
92);
211+
throw new phpFastCacheDriverException('PLEASE CHMOD ' . $path . ' - 0777 OR ANY WRITABLE PERMISSION!', 0, $e);
211212
}
212213
}
213214

214215
if (!file_exists($path . "/.htaccess")) {
215-
// echo "write me";
216216
$html = "order deny, allow \r\n
217217
deny from all \r\n
218218
allow from 127.0.0.1";

src/phpFastCache/Entities/driverStatistic.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class driverStatistic implements ArrayAccess
3131
/**
3232
* @var string
3333
*/
34-
protected $size = '';
34+
protected $size = 0;
3535

3636
/**
3737
* @var string
@@ -73,7 +73,7 @@ public function getData()
7373
*/
7474
public function setInfo($info)
7575
{
76-
$this->info = ($info ?: false);
76+
$this->info = ($info ?: '');
7777

7878
return $this;
7979
}
@@ -85,7 +85,7 @@ public function setInfo($info)
8585
*/
8686
public function setSize($size)
8787
{
88-
$this->size = ($size ?: false);
88+
$this->size = ($size ?: 0);
8989

9090
return $this;
9191
}
@@ -96,7 +96,7 @@ public function setSize($size)
9696
*/
9797
public function setData($data)
9898
{
99-
$this->data = ($data ?: false);
99+
$this->data = ($data ?: '');
100100

101101
return $this;
102102
}

src/phpFastCache/Exceptions/phpFastCacheDriverCheckException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
namespace phpFastCache\Exceptions;
1616

1717
/**
18-
* Class phpFastCacheDriverException
18+
* Class phpFastCacheDriverCheckException
1919
* @package phpFastCache\Exceptions
2020
*/
2121
class phpFastCacheDriverCheckException extends phpFastCacheDriverException

src/phpFastCache/Proxy/phpFastCacheAbstractProxy.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ abstract class phpFastCacheAbstractProxy
6161
* @param string $driver
6262
* @param array $config
6363
*/
64-
public function __construct($driver = '', array $config = [])
64+
public function __construct($driver = 'auto', array $config = [])
6565
{
6666
$this->instance = CacheManager::getInstance($driver, $config);
6767
}

0 commit comments

Comments
 (0)