From c526ba5c580ca7bf89b33254ce978f304500f753 Mon Sep 17 00:00:00 2001 From: Alexander Yureskul <47413612+chesn0k@users.noreply.github.com> Date: Thu, 1 Feb 2024 14:12:30 +0200 Subject: [PATCH] Fix private_only property annotation in Command.php --- src/Commands/Command.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Commands/Command.php b/src/Commands/Command.php index 96fa3d27..23577964 100644 --- a/src/Commands/Command.php +++ b/src/Commands/Command.php @@ -128,11 +128,11 @@ abstract class Command */ protected $need_mysql = false; - /* - * Make sure this command only executes on a private chat. - * - * @var bool - */ + /** + * Make sure this command only executes on a private chat. + * + * @var bool + */ protected $private_only = false; /**