| 1 | <?php |
||
| 12 | class PluginNumberFormat extends Plugin implements ICompilable |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @param Compiler $compiler |
||
| 16 | * @param float $value |
||
| 17 | * @param int $decimals |
||
| 18 | * @param string $dec_point |
||
| 19 | * @param string $thousands_sep |
||
| 20 | * |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | public static function compile(Compiler $compiler, $value, $decimals = 0, $dec_point = ".", $thousands_sep = ",") |
||
| 27 | } |
||
| 28 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.