Single line comments (like below) in php ```php // a single line comment nextStatement(); ``` gets minified without being manipulated and turn into ```php // a single line comment nextStatement(); ``` breaking the rest of the PHP file. [Screenshot (224kb)](https://user-images.githubusercontent.com/50755746/129057779-6f4bab5f-940b-4e44-b768-2c4bad9ecbbe.png) (left side is not minified, and the right side is minified but with changes that break the PHP file due to single line comments) [Original PHP file (external)](https://gitlab.com/JacksonChen666/JacksonChen666.gitlab.io/-/blob/a28b00fe12153b495c3f1488728880bfbe315023/php/Submit.php) ### Workaround: A workaround for not letting comments break the rest of the file is to use `/* multi-line (or 'C' style) comments instead */`