PHP7 compatibility fixes.
[fa-stable.git] / reporting / includes / fpdi / decoders / LZWDecode.php
index 59d1b487f8b767915fc69f599a3cc70c4e182be9..027cde862922158a1017cd76d4704b4b42300a01 100644 (file)
@@ -29,7 +29,7 @@ class LZWDecode {
     var $nextBits = 0;
     var $andTable = array(511, 1023, 2047, 4095);
 
-    function LZWDecode(&$fpdi) {
+    function __construct(&$fpdi) {
         $this->fpdi =& $fpdi;
     }