mirror of
https://github.com/predis/predis.git
synced 2026-08-22 00:30:57 +00:00
14 lines
307 B
PHP
14 lines
307 B
PHP
<?php
|
|
|
|
namespace Predis\Network;
|
|
|
|
use Predis\Commands\ICommand;
|
|
|
|
interface IConnectionSingle extends IConnection {
|
|
public function __toString();
|
|
public function getResource();
|
|
public function getParameters();
|
|
public function pushInitCommand(ICommand $command);
|
|
public function read();
|
|
}
|