1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26:
<?php namespace JohnRivs\Wunderlist;
trait User {
/**
* Show the currently logged in user.
*
* @return array
*/
public function getCurrentUser()
{
return $this->call('GET', 'user');
}
/**
* Show the users this user can access.
*
* @return array
*/
public function getUsers()
{
return $this->call('GET', 'users');
}
}