| 1 | <?php |
||
| 5 | class Device implements Targetable |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Recipient device id. |
||
| 9 | * |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | private $deviceId; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Set recipient device id. |
||
| 16 | * |
||
| 17 | * @param string $device |
||
| 18 | */ |
||
| 19 | 1 | public function __construct($device) |
|
| 23 | |||
| 24 | /** |
||
| 25 | * {@inheritdoc} |
||
| 26 | */ |
||
| 27 | 1 | public function getTarget() |
|
| 31 | } |
||
| 32 |