public static function getInstance($dependencyName = null)
 {
     if ($dependencyName) {
         throw new Kwf_Exception("Parameter must be null");
     }
     if (!isset(self::$_instance)) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }