1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?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 = []); }
|