Format a parameter list using native PHP type hints only. Used inside `<?php` code blocks so the displayed declaration matches what the actual PHP source code looks like.
(params: &[ParameterInfo])
| 57 | /// Used inside `<?php` code blocks so the displayed declaration matches |
| 58 | /// what the actual PHP source code looks like. |
| 59 | pub(super) fn format_native_params(params: &[ParameterInfo]) -> String { |
| 60 | format_params_inner(params, true) |
| 61 | } |
| 62 | |
| 63 | /// Shared implementation for parameter formatting. |
| 64 | /// |
no test coverage detected