mirror of
https://github.com/predis/predis.git
synced 2026-08-24 12:09:32 +00:00
22 lines
309 B
PHP
22 lines
309 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class TransactionMulti extends Command
|
|
{
|
|
public function getId()
|
|
{
|
|
return 'MULTI';
|
|
}
|
|
|
|
protected function onPrefixKeys(Array $arguments, $prefix)
|
|
{
|
|
/* NOOP */
|
|
}
|
|
|
|
protected function canBeHashed()
|
|
{
|
|
return false;
|
|
}
|
|
}
|