| 1 | <?php |
||
| 12 | class Me extends BaseApi implements Api |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * shows profile of authorized user. |
||
| 16 | * |
||
| 17 | * @return array |
||
| 18 | */ |
||
| 19 | 3 | public function profile() |
|
| 23 | |||
| 24 | /** |
||
| 25 | * shows favorite packages for authorized user. |
||
| 26 | * |
||
| 27 | * @return array |
||
| 28 | */ |
||
| 29 | 1 | public function favorites() |
|
| 33 | |||
| 34 | /** |
||
| 35 | * shows comments of authorized user. |
||
| 36 | * |
||
| 37 | * @return array |
||
| 38 | */ |
||
| 39 | 1 | public function comments() |
|
| 43 | |||
| 44 | /** |
||
| 45 | * shows unread notifications of authorized user. |
||
| 46 | * |
||
| 47 | * @return array |
||
| 48 | */ |
||
| 49 | 1 | public function notifications() |
|
| 53 | } |
||
| 54 |