You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CompressGzipstream uses some functions that were only added on PHP 7:
----------------------------------------------------------------------
FOUND 6 ERRORS AFFECTING 3 LINES
----------------------------------------------------------------------
1476 | ERROR | The function deflate_init() is not present in PHP
| | version 5.6 or earlier
| | (PHPCompatibility.FunctionUse.NewFunctions.deflate_initFound)
1476 | ERROR | The constant "ZLIB_ENCODING_GZIP" is not present in
| | PHP version 5.6 or earlier
| | (PHPCompatibility.Constants.NewConstants.zlib_encoding_gzipFound)
1483 | ERROR | The function deflate_add() is not present in PHP
| | version 5.6 or earlier
| | (PHPCompatibility.FunctionUse.NewFunctions.deflate_addFound)
1483 | ERROR | The constant "ZLIB_NO_FLUSH" is not present in PHP
| | version 5.6 or earlier
| | (PHPCompatibility.Constants.NewConstants.zlib_no_flushFound)
1492 | ERROR | The function deflate_add() is not present in PHP
| | version 5.6 or earlier
| | (PHPCompatibility.FunctionUse.NewFunctions.deflate_addFound)
1492 | ERROR | The constant "ZLIB_FINISH" is not present in PHP
| | version 5.6 or earlier
| | (PHPCompatibility.Constants.NewConstants.zlib_finishFound)
----------------------------------------------------------------------
The
CompressGzipstream
uses some functions that were only added on PHP 7:The text was updated successfully, but these errors were encountered: