15 lines
272 B
PHP
Executable File
15 lines
272 B
PHP
Executable File
<?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());
|
|
|
|
}
|