heimrichhannot / contao-utils-bundle

This bundle offers various utility functionality for the Contao CMS.
GNU Lesser General Public License v3.0
8 stars 4 forks source link

Compatibility with PHP < 7.4 broken #49

Closed plorenz-etes closed 2 years ago

plorenz-etes commented 2 years ago

Since the FileUtil class has been added, this bundle only works in PHP 7.4+. In line 16, typed properties are used ( https://github.com/heimrichhannot/contao-utils-bundle/blob/master/src/Util/File/FileUtil.php ):

private ContaoFramework $contaoFramework;

However, those are only supported since PHP 7.4. This broke a customer's Contao installation after an update because there's only 7.3 available on their webserver. I suggest you either exclude older PHP versions from this release or you don't use typed properties :)

koertho commented 2 years ago

Thanks for reporting!