| 1 | <?php |
||
| 14 | abstract class DataProvider extends Object |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var string The table name where device tokens stored. |
||
| 18 | */ |
||
| 19 | public $table; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | public $identifier; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string iOS device token table field name. |
||
| 28 | */ |
||
| 29 | public $apns; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var string Android device token table field name. |
||
| 33 | */ |
||
| 34 | public $gcm; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @var Query |
||
| 38 | */ |
||
| 39 | protected $query; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @param $identifiers |
||
| 43 | * |
||
| 44 | * @return array |
||
| 45 | */ |
||
| 46 | 2 | public function getTokens($identifiers) |
|
| 69 | |||
| 70 | 5 | public function init() |
|
| 84 | } |