Commit d4482950 authored by Nicolas Ricklin's avatar Nicolas Ricklin Committed by Matthew Grasmick
Browse files

Issue #3272884 by Aerzas: html_entity_decode(): Passing null to parameter #1...

Issue #3272884 by Aerzas: html_entity_decode(): Passing null to parameter #1 ($string) of type string is deprecated
parent 4295116e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -229,7 +229,7 @@ class CsvEncoder implements EncoderInterface, DecoderInterface {
        $cell_value = $this->flattenCell($cell_data);
      }
      else {
        $cell_value = $cell_data;
        $cell_value = (string) $cell_data;
      }

      $formatted_row[] = $this->formatValue($cell_value);