Doctrine\ODM\MongoDB\Mapping\Types\Type::registerType PHP Method

registerType() public static method

Register a new type in the type map.
public static registerType ( string $name, string $class )
$name string The name of the type.
$class string The class name.
    public static function registerType($name, $class)
    {
        self::$typesMap[$name] = $class;
    }