| 1 | <?php |
||
| 14 | class Formatter |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @param integer $bytes |
||
| 18 | * @param integer $precision |
||
| 19 | * @return string |
||
| 20 | */ |
||
| 21 | public static function bytes($bytes, $precision = 2) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param mixed $date |
||
| 35 | * @param string $format |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | public static function date($date, $format = null) |
||
| 50 | } |
||
| 51 |