mirror of
https://github.com/predis/predis.git
synced 2026-08-21 03:32:26 +00:00
8 lines
107 B
PHP
8 lines
107 B
PHP
<?php
|
|
|
|
namespace Predis;
|
|
|
|
interface IConnectionSchemes {
|
|
public function newConnection($parameters);
|
|
}
|