fitztrev / laravel-html-minify

Minifies the HTML output of Laravel 4 applications
https://github.com/fitztrev/laravel-html-minify/wiki/Laravel-5---5.1-HTML-Minifying
MIT License
414 stars 76 forks source link

ignore php code after comment // #33

Closed sil218 closed 9 years ago

sil218 commented 10 years ago

Hello, for some reason, the package cause an issue to ignore code after the use of // inside php code of the blade template example: hello.blade.php <?php $myArray = array() //create array for($i;$i<10;$i++){ $mArray[] = $i; } echo $myArray; ?>

This code will not be run inside the blade template.