There are not parameters for this method

require_once('../classes/cCreateDocx.inc');
$objDocx = new cCreateDocx();
$arrDatsList = array( 'Line 1', 'Line 2', 'Line 3', 'Line 4', 'Line 5' );
$arrParamsList = array( 'val' => 1 );
$objDocx->fAddList($arrDatsList, $arrParamsList);
$objDocx->fEnableDebug();
$objDocx->fCreateDocx('ejemplo_section');
Your comments