diff --git a/src/Formatters/NumberFormatter.php b/src/Formatters/NumberFormatter.php new file mode 100644 index 0000000..3ae2520 --- /dev/null +++ b/src/Formatters/NumberFormatter.php @@ -0,0 +1,30 @@ + + * + * @author Peter Lai + * @license MIT + */ + +namespace Web3\Formatters; + +use InvalidArgumentException; +use Web3\Utils; +use Web3\Formatters\IFormatter; + +class NumberFormatter implements IFormatter +{ + /** + * format + * + * @param int|float $value + * @return int|float + */ + public static function format($value) + { + return $value; + } +} \ No newline at end of file