15 lines
272 B
PHP
15 lines
272 B
PHP
|
<?php namespace Illuminate\Contracts\Redis;
|
||
|
|
||
|
interface Database {
|
||
|
|
||
|
/**
|
||
|
* Run a command against the Redis database.
|
||
|
*
|
||
|
* @param string $method
|
||
|
* @param array $parameters
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function command($method, array $parameters = array());
|
||
|
|
||
|
}
|