decimal() public static method

public static decimal ( ) : Type
return Type
Exemplo n.º 1
0
 /**
  * @return Type
  */
 public function type() : Type
 {
     return Type::decimal();
 }
Exemplo n.º 2
0
 /**
  * @param Type $type
  *
  * @return bool
  */
 public function maps(Type $type) : bool
 {
     return Type::decimal()->isEqual($type);
 }