Ejemplo n.º 1
0
 /**
  * Public Function which retrieves renew, hold and cancel settings from the
  * driver ini file.
  *
  * @param string $function The name of the feature to be checked
  * @param array  $params   Optional feature-specific parameters (array)
  *
  * @return array An array with key-value pairs.
  *
  * @SuppressWarnings(PHPMD.UnusedFormalParameter)
  */
 public function getConfig($function, $params = null)
 {
     if ($function == 'onlinePayment') {
         return $this->config['OnlinePayment'];
     }
     return parent::getConfig($function, $params);
 }