mirror of
https://github.com/predis/predis.git
synced 2026-08-21 03:42:57 +00:00
14 lines
193 B
PHP
14 lines
193 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class Auth extends Command {
|
|
public function getId() {
|
|
return 'AUTH';
|
|
}
|
|
|
|
protected function canBeHashed() {
|
|
return false;
|
|
}
|
|
}
|