1 | <?php |
||
11 | class Credentials implements CredentialsInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $key; |
||
17 | |||
18 | /** |
||
19 | * @param string|array $key |
||
20 | */ |
||
21 | 48 | public function __construct($key) |
|
38 | |||
39 | /** |
||
40 | * @return string |
||
41 | */ |
||
42 | 46 | public function getKey() |
|
46 | |||
47 | /** |
||
48 | * @return array |
||
49 | */ |
||
50 | 42 | public function toArray() |
|
54 | } |
||
55 |