Exec.php 173 B

12345678
  1. <?php
  2. namespace Predis\Commands;
  3. class Exec extends Command {
  4. public function canBeHashed() { return false; }
  5. public function getCommandId() { return 'EXEC'; }
  6. }