| 1 | <?php |
||
| 7 | class GetParameterAuthenticationHandler implements APIAuthenticationMethodInterface |
||
| 8 | { |
||
| 9 | const TYPE = 'get_parameter'; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * Concats the get path with the token. |
||
| 13 | */ |
||
| 14 | public function handle($curl, &$getMethod, &$token) |
||
| 18 | |||
| 19 | /** |
||
| 20 | * {@inheritdoc} |
||
| 21 | */ |
||
| 22 | public static function getType() |
||
| 26 | } |
||
| 27 |