From bcd17420a87c9523f72f8c14aa16aca68e04fe5c Mon Sep 17 00:00:00 2001 From: Huong Nguyen Date: Tue, 5 Dec 2023 08:48:00 +0700 Subject: [PATCH] MDL-79759 repository_url: Remove types properties --- repository/url/lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repository/url/lib.php b/repository/url/lib.php index bc25d025705..152e9f5fd17 100644 --- a/repository/url/lib.php +++ b/repository/url/lib.php @@ -39,9 +39,9 @@ class repository_url extends repository { /** @var int Maximum time of recursion. */ const MAX_RECURSION_TIME = 5; /** @var int Maximum number of CSS imports. */ - protected const MAX_CSS_IMPORTS = 10; + const MAX_CSS_IMPORTS = 10; /** @var int CSS import counter. */ - protected int $cssimportcounter = 0; + var $cssimportcounter = 0; var $processedfiles = array(); /** @var int Recursion counter. */ var $recursioncounter = 0;