mirror of
https://github.com/predis/predis.git
synced 2026-08-24 20:09:34 +00:00
8 lines
100 B
PHP
8 lines
100 B
PHP
<?php
|
|
|
|
namespace Predis;
|
|
|
|
interface IConnectionFactory {
|
|
public function create($parameters);
|
|
}
|