mirror of
https://github.com/predis/predis.git
synced 2026-08-24 13:29:31 +00:00
11 lines
194 B
PHP
11 lines
194 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class Exec extends Command {
|
|
public function canBeHashed() { return false; }
|
|
public function getCommandId() { return 'EXEC'; }
|
|
}
|