mirror of
https://github.com/predis/predis.git
synced 2026-08-24 12:19:35 +00:00
10 lines
166 B
PHP
10 lines
166 B
PHP
<?php
|
|
|
|
namespace Predis\Pipeline;
|
|
|
|
use Predis\Network\IConnection;
|
|
|
|
interface IPipelineExecutor {
|
|
public function execute(IConnection $connection, &$commands);
|
|
}
|