mirror of
https://github.com/predis/predis.git
synced 2026-08-20 07:42:18 +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;
|
|
}
|
|
}
|