mirror of
https://github.com/predis/predis.git
synced 2026-08-24 20:19:41 +00:00
22 lines
306 B
PHP
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;
|
|
}
|
|
}
|