| 1 | <?php |
||
| 7 | class User extends Provider { |
||
| 8 | |||
| 9 | protected $loginRequired = ['profile']; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * Update user profile info. Gets associative array as |
||
| 13 | * a params. Available keys of array are: |
||
| 14 | * 'last_name', 'first_name', 'username', 'about', 'location' and 'website_url'. |
||
| 15 | * |
||
| 16 | * @param array $userInfo |
||
| 17 | */ |
||
| 18 | public function profile($userInfo) |
||
| 24 | |||
| 25 | } |
||
| 26 |