mirror of
https://github.com/predis/predis.git
synced 2026-08-24 20:09:34 +00:00
9 lines
170 B
PHP
9 lines
170 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class Multi extends Command {
|
|
protected function canBeHashed() { return false; }
|
|
public function getId() { return 'MULTI'; }
|
|
}
|