1
0
mirror of https://github.com/elyby/accounts.git synced 2025-03-14 15:54:25 +05:30
accounts/common/components/Redis/ConnectionInterface.php

20 lines
397 B
PHP

<?php
namespace common\components\Redis;
interface ConnectionInterface {
/**
* @return ConnectionInterface
*/
public function getConnection();
/**
* @param string $name Command, that should be executed
* @param array $params Arguments for this command
*
* @return mixed
*/
public function executeCommand(string $name, array $params = []);
}