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