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
1 changed files with 1 additions and 1 deletions

View File

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