We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Single line comments (like below) in php
// a single line comment nextStatement();
gets minified without being manipulated and turn into
breaking the rest of the PHP file.
Screenshot (224kb) (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)
A workaround for not letting comments break the rest of the file is to use /* multi-line (or 'C' style) comments instead */
/* multi-line (or 'C' style) comments instead */
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Single line comments (like below) in php
gets minified without being manipulated and turn into
// a single line comment nextStatement();
breaking the rest of the PHP file.
Screenshot (224kb) (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)
Workaround:
A workaround for not letting comments break the rest of the file is to use
/* multi-line (or 'C' style) comments instead */
The text was updated successfully, but these errors were encountered: