mirror of
https://github.com/predis/predis.git
synced 2026-08-20 01:51:47 +00:00
10 lines
150 B
PHP
10 lines
150 B
PHP
<?php
|
|
|
|
namespace Predis\Protocols;
|
|
|
|
use Predis\Commands\ICommand;
|
|
|
|
interface ICommandSerializer {
|
|
public function serialize(ICommand $command);
|
|
}
|