feat : oss callback

This commit is contained in:
2024-10-31 17:57:49 +08:00
parent 2d8f35ddf0
commit c4a59d68f8
12 changed files with 435 additions and 6 deletions

View File

@@ -421,7 +421,7 @@ class RedisCache
* @throws NotFoundExceptionInterface
* @throws RedisException
*/
public function lPush(string $key, string $data, string $poolName = 'default')
public function lPush(string $key, string $data, string $poolName = 'default'): false|int|Redis
{
return $this->getRedis($poolName)->lPush($key, $data);
}