tubalmartin / YUI-CSS-compressor-PHP-port

A PHP port of the YUI CSS compressor.
230 stars 34 forks source link

Fix for PHP 8 deprecation #68

Closed nahall closed 11 months ago

nahall commented 11 months ago

PHP 8 now generates an exception:

Exception: Deprecated Functionality: preg_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

This casts the $css to a string so a null will end up being a blank string and not generate the deprecation warning.