mirror of
https://github.com/predis/predis.git
synced 2026-08-21 16:10:56 +00:00
10 lines
173 B
PHP
10 lines
173 B
PHP
<?php
|
|
|
|
namespace Predis;
|
|
|
|
interface IConnectionParameters {
|
|
public function __isset($parameter);
|
|
public function __get($parameter);
|
|
public function toArray();
|
|
}
|