datatable - row actions - allow returning null

This commit is contained in:
Benjamin Dalsass
2022-11-24 09:16:02 +01:00
parent bdb29fd99a
commit 038e6d7f3f

View File

@@ -56,9 +56,9 @@ trait tTableRowActions
/**
* Get row actions.
*
* @return array
* @return array|null
*/
public function GetRowActions(): array
public function GetRowActions(): ?array
{
return $this->aRowActions;
}