| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | class ParametersHelper |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * Convert an array of string parameters in string, with each parameters separated with a ','. |
||
| 27 | * |
||
| 28 | * @param string[] $parameters The parameters array. |
||
| 29 | * |
||
| 30 | * @return string The rendered parameters string. |
||
| 31 | */ |
||
| 32 | public function invoke(array $parameters): string |
||
| 41 |