Ejemplo n.º 1
0
 /**
  * @throws	RunTimeException
  * @param	string	$key
  * @return	DbMapInterface
  */
 public static function getDbMap($key)
 {
     $db = OrmManager::getDbMap($key);
     if (false === $db) {
         $err = "db map could not be found for -({$key})";
         throw new RunTimeException($err);
     }
     return $db;
 }