| 1 | <?php |
||
| 34 | class PluginWordwrap extends Plugin implements ICompilable |
||
| 35 | { |
||
| 36 | /** |
||
| 37 | * @param Compiler $compiler |
||
| 38 | * @param string $value |
||
| 39 | * @param int $length |
||
| 40 | * @param string $break |
||
| 41 | * @param bool $cut |
||
| 42 | * |
||
| 43 | * @return string |
||
| 44 | */ |
||
| 45 | public static function compile(Compiler $compiler, $value, $length = 80, $break = "\n", $cut = false) |
||
| 49 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.