Fix notice message when $return is undefined in Core\ACL

2022.09-rc
Hypolite Petovan 2019-09-13 20:06:22 -04:00
rodzic cd4edb1038
commit 1a81ed8616
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -360,6 +360,6 @@ class ACL extends BaseObject
}
}
return defaults($return, []);
return $return ?? [];
}
}