1 | <?php |
||
7 | class AMQPlainMechanism implements MechanismInterface |
||
8 | { |
||
9 | const LOGIN_KEY = 'LOGIN'; |
||
10 | const PASSWORD_KEY = 'PASSWORD'; |
||
11 | const STRING_TYPE_HINT = 'S'; |
||
12 | |||
13 | /** |
||
14 | * {@inheritdoc} |
||
15 | */ |
||
16 | 19 | public function getName() |
|
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | 19 | public function getResponse($username, $password) |
|
39 | } |
||
40 |