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