* * @author Peter Lai * @license MIT */ namespace Web3\Formatters; interface IFormatter { /** * format * * @param mixed $value * @return string */ public static function format($value); }