normalizeDataType() 공개 정적인 메소드

public static normalizeDataType ( string $type ) : string
$type string
리턴 string
예제 #1
0
 /**
  * Property constructor.
  *
  * @param string $name
  * @param string $type
  */
 public function __construct($name, $type)
 {
     $this->name = Normalizer::normalizeProperty($name);
     $this->type = Normalizer::normalizeDataType($type);
 }