typeExists() 공개 정적인 메소드

public static typeExists ( string $name ) : DBALException
$name string
리턴 DBALException
예제 #1
0
파일: Type.php 프로젝트: erikjwaxx/dbal
 /**
  * Adds a custom type to the type map.
  *
  * @param string $name      The name of the type. This should correspond to what getName() returns.
  * @param string $className The class name of the custom type.
  *
  * @return void
  *
  * @throws \Doctrine\DBAL\DBALException
  */
 public static function addType($name, $className)
 {
     if (isset(self::$_typesMap[$name])) {
         throw DBALException::typeExists($name);
     }
     self::$_typesMap[$name] = $className;
 }