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