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 | * @return mixed |
||
18 | */ |
||
19 | public function profile($userInfo) |
||
25 | |||
26 | } |
||
27 |