From afcd9c998ad4a76b6ccbb5626411142fe7399070 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Fri, 27 Oct 2023 13:28:09 +0200 Subject: [PATCH] fixed path proprety to protected --- path/path.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/path/path.php b/path/path.php index 92472ff..23f0036 100644 --- a/path/path.php +++ b/path/path.php @@ -16,11 +16,11 @@ namespace SYSTEM; */ class PATH { /** array Variable to store the base path object of the path object */ - private $basepath = NULL; + protected $basepath = NULL; /** array Variable to store the path of the path object */ - private $path = NULL; + protected $path = NULL; /** array Variable to store the sub path of the path object */ - private $subpath = NULL; + protected $subpath = NULL; /** * Construct the path with given basepath, path and subpath