org\Transform::init PHP Метод

init() приватный статический Метод

初始化解析驱动
private static init ( string $type )
$type string 驱动类型
    private static function init($type)
    {
        if (!isset(self::$handler[$type])) {
            $class = '\\org\\transform\\driver\\' . ucwords($type);
            self::$handler[$type] = new $class();
        }
    }