I've added functionality to properly handle percentage signs in the ProgressBar class's property title
.
This enhancement ensures that when a title contains percentage signs, they are correctly escaped to prevent issues with the sprintf function.
Modified
- #26 : Modified the advance() method in ProgressBar.php:
- Added code to escape percentage signs in the title before using it in
sprintf
- Used
str_replace('%', '%%', $this->title)
to double all percentage signs
- Used
- Added code to escape percentage signs in the title before using it in