for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Silviooosilva\CacheerPhp\Helpers;
use Silviooosilva\CacheerPhp\Helpers\CacheerHelper;
use Silviooosilva\CacheerPhp\Exceptions\CacheRedisException;
/**
* Class CacheRedisHelper
* @author Sílvio Silva <https://github.com/silviooosilva>
* @package Silviooosilva\CacheerPhp
*/
class CacheRedisHelper
{
* serializes or unserializes data based on the $serialize flag.
*
* @param mixed $data
* @param bool $serialize
* @return mixed
public static function serialize(mixed $data, bool $serialize = true): mixed
if($serialize) {
return serialize($data);
}
return unserialize($data);
* Validates a cache item.
* @param array $item
* @return void
public static function validateCacheItem(array $item): void
CacheerHelper::validateCacheItem(
$item,
fn($msg) => CacheRedisException::create($msg)
);
* Merges cache data with existing data.
* @param $cacheData
* @return array
public static function mergeCacheData($cacheData): array
return CacheerHelper::mergeCacheData($cacheData);
* Generates an array identifier for cache data.
* @param mixed $currentCacheData
* @param mixed $cacheData
public static function arrayIdentifier(mixed $currentCacheData, mixed $cacheData): array
return CacheerHelper::arrayIdentifier($currentCacheData, $cacheData);