Files
predis/lib/Predis/Commands/TransactionMulti.php
T
2011-10-18 15:51:55 +02:00

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;
}
}