1 | <?php |
||
13 | class FirebaseProvider implements ProviderInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | private $url; |
||
19 | |||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | private $token; |
||
24 | |||
25 | /** |
||
26 | * @param array $config |
||
27 | * |
||
28 | * @FirebaseConfig |
||
29 | */ |
||
30 | 1 | public function __construct(array $config) |
|
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | 1 | public function get() |
|
44 | } |
||
45 |