예제 #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];
 }