From 77765dc100ce8087e85bae2aa4537b2995e536eb Mon Sep 17 00:00:00 2001 From: jbidad <51882296+jbidad@users.noreply.github.com> Date: Mon, 29 Jan 2024 11:15:41 +0330 Subject: [PATCH] Update TelegramFormatter.php make class global variable protected to be extendable --- src/TelegramFormatter.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/TelegramFormatter.php b/src/TelegramFormatter.php index de5357c..afb9adc 100644 --- a/src/TelegramFormatter.php +++ b/src/TelegramFormatter.php @@ -16,27 +16,27 @@ class TelegramFormatter implements FormatterInterface /** * @var bool */ - private $html; + protected $html; /** * @var string */ - private $format; + protected $format; /** * @var string */ - private $dateFormat; + protected $dateFormat; /** * @var string */ - private $separator; + protected $separator; /** * @var string */ - private $tags; + protected $tags; /** * Formatter constructor