Doctrine\ODM\MongoDB\Mapping\Types\Type::hasType PHP 메소드

hasType() 공개 정적인 메소드

Checks if exists support for a type.
public static hasType ( string $name ) : boolean
$name string Name of the type
리턴 boolean TRUE if type is supported; FALSE otherwise
    public static function hasType($name)
    {
        return isset(self::$typesMap[$name]);
    }