From 8e52c2128cc6f8c27ef37bc07c5001aa542e11d3 Mon Sep 17 00:00:00 2001 From: Mirzaev Date: Mon, 7 Nov 2022 22:27:58 +1000 Subject: [PATCH] fix Too few arguments to function command::__construct() --- mirzaev/vk/chat/system/command.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mirzaev/vk/chat/system/command.php b/mirzaev/vk/chat/system/command.php index 4bf4316..11c9c24 100644 --- a/mirzaev/vk/chat/system/command.php +++ b/mirzaev/vk/chat/system/command.php @@ -23,7 +23,7 @@ class command */ public function __construct( public Closure $program, - public array $accounts + public array $accounts = [] ) { }