Files
predis/lib/Predis/Commands/ServerEval.php
T
2011-05-03 15:07:56 +02:00

14 lines
199 B
PHP

<?php
namespace Predis\Commands;
class ServerEval extends Command {
public function getId() {
return 'EVAL';
}
protected function canBeHashed() {
return false;
}
}