Files
predis/lib/Predis/Commands/ConnectionAuth.php
T
2011-10-18 15:51:55 +02:00

22 lines
306 B
PHP

<?php
namespace Predis\Commands;
class ConnectionAuth extends Command
{
public function getId()
{
return 'AUTH';
}
protected function onPrefixKeys(Array $arguments, $prefix)
{
/* NOOP */
}
protected function canBeHashed()
{
return false;
}
}