From 9730149fab6da07f28ea2aed802e47026e2bf5d9 Mon Sep 17 00:00:00 2001 From: MDW Date: Mon, 18 Mar 2024 19:35:43 +0100 Subject: [PATCH] Fix typing: childtables can also be list of strings --- htdocs/core/class/commonobject.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/commonobject.class.php b/htdocs/core/class/commonobject.class.php index f67471ee76e..892fd02fcdb 100644 --- a/htdocs/core/class/commonobject.class.php +++ b/htdocs/core/class/commonobject.class.php @@ -786,7 +786,7 @@ abstract class CommonObject public $extraparams = array(); /** - * @var array List of child tables. To test if we can delete object. + * @var string[]|array List of child tables. To test if we can delete object. */ protected $childtables = array();