normalizeDataType() public static method

public static normalizeDataType ( string $type ) : string
$type string
return string
Beispiel #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);
 }