diff options
author | Mario <mario@mariovavti.com> | 2024-01-13 19:10:44 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-01-13 19:10:44 +0000 |
commit | 6df98f2fad7741af341f4e74fd2e2f28f21bf373 (patch) | |
tree | 229f9e11983888d1975ff69311be6de4042b7b30 /library | |
parent | c59701740294ee8986942579abe18f82c4dee176 (diff) | |
download | volse-hubzilla-6df98f2fad7741af341f4e74fd2e2f28f21bf373.tar.gz volse-hubzilla-6df98f2fad7741af341f4e74fd2e2f28f21bf373.tar.bz2 volse-hubzilla-6df98f2fad7741af341f4e74fd2e2f28f21bf373.zip |
private -> public
Diffstat (limited to 'library')
-rw-r--r-- | library/jsonld/jsonld.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/jsonld/jsonld.php b/library/jsonld/jsonld.php index db4f4ae06..481e0fc5d 100644 --- a/library/jsonld/jsonld.php +++ b/library/jsonld/jsonld.php @@ -5846,10 +5846,10 @@ class UniqueNamer { * @param prefix the prefix to use ('<prefix><counter>'). */ - private $prefix; - private $counter; - private $existing; - private $order; + public $prefix; + public $counter; + public $existing; + public $order; public function __construct($prefix) { $this->prefix = $prefix; |