Hello,
Please follow the steps explained on:
http://www.phpdocx.com/documentation/conversion-plugin
to install and debug the conversion plugin.
About transformDocumentAndDownload, there's no method. I have added a task to consider adding it, but it can be done easily using a PHP header, this is something like:
header('Content-type:application/pdf');
header('Content-Disposition:attachment;filename="file.pdf"');
readfile('file_src.pdf');
Regards.