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

This commit is contained in:
Hypolite Petovan 2019-09-13 20:06:22 -04:00
parent cd4edb1038
commit 1a81ed8616

View file

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