Apply suggestions from code review
Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
This commit is contained in:
parent
5ff1d431aa
commit
ae1533e312
|
@ -32,9 +32,7 @@ use Friendica\Core\Config\ValueObject\Cache;
|
|||
*/
|
||||
class Config implements IManageConfigValues
|
||||
{
|
||||
/**
|
||||
* @var Cache
|
||||
*/
|
||||
/** @var Cache */
|
||||
protected $configCache;
|
||||
|
||||
/** @var ConfigFileManager */
|
||||
|
|
|
@ -401,7 +401,7 @@ class ConfigFileManager
|
|||
private function loadConfigFile(string $filepath): array
|
||||
{
|
||||
if (file_exists($filepath)) {
|
||||
$config = include($filepath);
|
||||
$config = include $filepath;
|
||||
|
||||
if (!is_array($config)) {
|
||||
throw new ConfigFileException('Error loading config file ' . $filepath);
|
||||
|
|
|
@ -212,12 +212,9 @@ class Cache
|
|||
return null;
|
||||
}
|
||||
|
||||
switch (true) {
|
||||
// manage array value
|
||||
case preg_match("|^a:[0-9]+:{.*}$|s", $value):
|
||||
if (preg_match("|^a:[0-9]+:{.*}$|s", $value)) {
|
||||
return unserialize($value);
|
||||
|
||||
default:
|
||||
} else {
|
||||
return $value;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue