예제 #1
0
 /**
  * @access public
  * @param string
  * @throws OpenPayU_Exception_Configuration
  */
 public static function setHashAlgorithm($value)
 {
     if (!in_array($value, self::$_availableHashAlgorithm)) {
         throw new OpenPayU_Exception_Configuration($value . ' - is not available');
     }
     self::$hashAlgorithm = $value;
 }