예제 #1
0
파일: Proxy.php 프로젝트: psagi/sdo
 /**
  * Create data pnkect
  *
  * @param string $namespace_uri Namespace URI
  * @param string $type_name     Type name
  *
  * @return mixed
  */
 public function createDataObject($namespace_uri, $type_name)
 {
     try {
         return SCA_Helper::createDataObject($namespace_uri, $type_name, $this->component_class_name);
     } catch (Exception $e) {
         throw new SCA_RuntimeException($e->getMessage());
     }
     // following return logically unecessary but keeps the ZS code
     // analyzer happy
     return null;
 }