2018-11-05 09:26:30 +08:00

15 lines
261 B
PHP

<?php
namespace Illuminate\Contracts\Redis;
interface Factory
{
/**
* Get a Redis connection by name.
*
* @param string $name
* @return \Illuminate\Redis\Connections\Connection
*/
public function connection($name = null);
}