| 1 | <?php |
||
| 5 | class AppAuth implements AuthValue |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * The application ID. |
||
| 9 | * |
||
| 10 | * @see https://developer.justgiving.com/apidocs/documentation#AppId |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | protected $appId; |
||
| 14 | |||
| 15 | 1 | public function __construct($appId) |
|
| 19 | |||
| 20 | /** |
||
| 21 | * Get the authentication headers. |
||
| 22 | * |
||
| 23 | * @return array |
||
| 24 | */ |
||
| 25 | 2 | public function getHeaders() |
|
| 29 | } |
||
| 30 |