diff --git a/Grid/Column/Column.php b/Grid/Column/Column.php index 12a1d7f5..1acc0b64 100644 --- a/Grid/Column/Column.php +++ b/Grid/Column/Column.php @@ -526,7 +526,11 @@ public function setData($data) public function getData() { $result = []; - + // PHP 7.4 Notices + if (is_null($this->data)) { + return $result; + } + $hasValue = false; if (isset($this->data['from']) && $this->data['from'] != $this::DEFAULT_VALUE) { $result['from'] = $this->data['from'];