From c0657f55a5342da76bb0325e4cedfffb8926dc02 Mon Sep 17 00:00:00 2001 From: Mike Macgirvin Date: Mon, 12 Sep 2022 13:39:41 -0700 Subject: [PATCH] change constructor type to match current usage --- Code/Access/AccessControl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Access/AccessControl.php b/Code/Access/AccessControl.php index 7e33d1328..50e0e60ac 100644 --- a/Code/Access/AccessControl.php +++ b/Code/Access/AccessControl.php @@ -54,7 +54,7 @@ class AccessControl * * \e string \b channel_deny_cid => string of denied xchan_hash * * \e string \b channel_deny_gid => string of denied group_id */ - public function __construct(array $channel) + public function __construct(mixed $channel) { if ($channel) { $this->allow_cid = $channel['channel_allow_cid'];