Files
predis/lib/Predis/Commands/ConnectionSelect.php
T
2011-04-25 12:39:21 +02:00

14 lines
207 B
PHP

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