Okay to add the return type?
public function uploader()
/**
* Get an uploader with which to upload photos to (or replace photos on) Flickr.
* @return Uploader
*/
public function uploader(): Uploader // add the return type
{
return new Uploader($this);
}