Exemple #1
0
 /**
  * delegater
  *
  * @param key
  * @param dc
  * @throws Exception
  */
 protected static function doCheckParams($key, $map)
 {
     if (empty($key)) {
         return;
     }
     if (CheckReqDataAndEncrypt::isOptional($key)) {
         // 			$log = new Logger ();
         // 			$log->logInfo ("The parameters of the request ". $key. "");
         CheckReqDataAndEncrypt::check(CheckReqDataAndEncrypt::removBrackets($key), $map, false);
     } else {
         CheckReqDataAndEncrypt::check($key, $map, true);
     }
 }