// If you make an api call with parameters you must pass an associated array
$fileinfo = $putio->FilesInfo(array(
'id' => 6017104
));
// API call without parameters
$user = $putio->UserInfo();
// $putio->UserFriends calls User class and Friends function
$friends = $putio->UserFriends();
// False class name requests or null curl responses throws Putio Exception "PutioException: Error Processing Request"
// $foo = $putio->FooList();
// False function name or argument requests throws Putio Exception with error message like "PutioException: service "user" has no method "delete_action"