/**
  * wraps Svea\WebServiceRowFormatter->formatRowNameAndDescription to create a request description from order builder row name & description fields
  *
  * @param OrderRow|ShippingFee|et al. $webPayItemRow  an instance of the order row classes from WebPayItem
  * @return string  the combined description string that should be written to Description
  */
 protected function formatRowNameAndDescription($webPayItemRow)
 {
     $wsrf = new \Svea\WebService\WebServiceRowFormatter(null, null);
     return $wsrf->formatRowNameAndDescription($webPayItemRow);
 }