web3.php/src/Formatters/IFormatter.php
2017-12-28 10:52:30 +08:00

23 lines
355 B
PHP

<?php
/**
* This file is part of web3.php package.
*
* (c) Kuan-Cheng,Lai <alk03073135@gmail.com>
*
* @author Peter Lai <alk03073135@gmail.com>
* @license MIT
*/
namespace Web3\Formatters;
interface IFormatter
{
/**
* format
*
* @param mixed $value
* @return string
*/
public static function format($value);
}