示例#1
0
文件: Symbols.php 项目: phpml/phpml
 public static function getComponentById($id)
 {
     if (!self::idExists($id)) {
         throw ExceptionFactory::createUndefinedId(__FILE__, __LINE__, $id);
     }
     return self::$ids[$id];
 }