| 1 | <?php |
||
| 10 | class Broadcaster implements IBroadcaster { |
||
| 11 | |||
| 12 | /** @var IManager */ |
||
| 13 | private $activityManager; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * {@inheritdoc} |
||
| 17 | */ |
||
| 18 | public function init() { |
||
| 24 | |||
| 25 | /** |
||
| 26 | * {@inheritdoc} |
||
| 27 | */ |
||
| 28 | public function createShareToUser(SharingFrame $frame, $userId) { |
||
| 45 | |||
| 46 | |||
| 47 | /** |
||
| 48 | * {@inheritdoc} |
||
| 49 | */ |
||
| 50 | public function deleteShareToUser(SharingFrame $frame, $userId) { |
||
| 53 | |||
| 54 | |||
| 55 | /** |
||
| 56 | * {@inheritdoc} |
||
| 57 | */ |
||
| 58 | public function editShareToUser(SharingFrame $frame, $userId) { |
||
| 61 | |||
| 62 | |||
| 63 | /** |
||
| 64 | * {@inheritdoc} |
||
| 65 | */ |
||
| 66 | public function createShareToCircle(SharingFrame $frame) { |
||
| 69 | |||
| 70 | /** |
||
| 71 | * {@inheritdoc} |
||
| 72 | */ |
||
| 73 | public function deleteShareToCircle(SharingFrame $frame) { |
||
| 76 | |||
| 77 | /** |
||
| 78 | * {@inheritdoc} |
||
| 79 | */ |
||
| 80 | public function editShareToCircle(SharingFrame $frame) { |
||
| 83 | |||
| 84 | |||
| 85 | } |