- Issue created by @arti_parmar
- Issue was unassigned.
- Status changed to Needs review
almost 2 years ago 11:32am 21 June 2023 - last update
almost 2 years ago 54 pass - Status changed to RTBC
almost 2 years ago 2:02pm 21 June 2023 - 🇵🇭Philippines kenyoOwen
Hi arti_parmar
I applied your patch and confirmed that the phpcs issues mentioned are resolved. Please see the screenshots attached.
Thank you.
- Status changed to Needs work
almost 2 years ago 9:26am 22 June 2023 - 🇮🇹Italy apaderno Brescia, 🇮🇹
- $point = &$form; + $point = $form;
Actually, the report is suggesting to remove the
$point
variable, not to remove&
from that line.- private function formatList(array $list, $depth = 1) { + public function formatList(array $list, $depth = 1) { $spacer = '<br />' . str_repeat(' ', 2 * $depth); $output = $spacer . Xss::filter(implode($spacer, $list), ['br']); return $output;
The report is saying that method is not used. Fixing that does not mean making the method public.
- Status changed to Needs review
almost 2 years ago 7:42am 23 June 2023 - last update
almost 2 years ago 54 pass - 🇮🇳India Ajeet Tiwari
tried to resolve the comment #4 and uploading patch for the same.
- Status changed to RTBC
almost 2 years ago 3:56pm 23 June 2023 - 🇮🇹Italy apaderno Brescia, 🇮🇹
The last patch is correct as per issue topic.