diff options
author | Mario <mario@mariovavti.com> | 2024-03-22 08:37:29 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-03-22 08:37:29 +0000 |
commit | 1aeb05628b6a2a069c46980efbe628362c9e3e74 (patch) | |
tree | e9aed15d0cd74e0c23dcb05c7be8fe9541efdf36 /library/jsonld/jsonld.php | |
parent | 5b7387459cf4de8f7354d81cb0392c4225714d94 (diff) | |
parent | b464fae3bf22585888c5f3def8eded76fd48ed16 (diff) | |
download | volse-hubzilla-9.0.tar.gz volse-hubzilla-9.0.tar.bz2 volse-hubzilla-9.0.zip |
Merge branch '9.0RC'9.0
Diffstat (limited to 'library/jsonld/jsonld.php')
-rw-r--r-- | library/jsonld/jsonld.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/library/jsonld/jsonld.php b/library/jsonld/jsonld.php index bc3ca7a31..d3e64e58f 100644 --- a/library/jsonld/jsonld.php +++ b/library/jsonld/jsonld.php @@ -5805,6 +5805,12 @@ jsonld_register_rdf_parser( * A JSON-LD Exception. */ class JsonLdException extends Exception { + + protected $type; + protected $code; + protected $details; + protected $cause; + public function __construct( $msg, $type, $code='error', $details=null, $previous=null) { $this->type = $type; @@ -5839,6 +5845,12 @@ class UniqueNamer { * * @param prefix the prefix to use ('<prefix><counter>'). */ + + public $prefix; + public $counter; + public $existing; + public $order; + public function __construct($prefix) { $this->prefix = $prefix; $this->counter = 0; @@ -5902,6 +5914,11 @@ class Permutator { * * @param array $list the array of elements to iterate over. */ + + public $list; + public $done; + public $left; + public function __construct($list) { // original array $this->list = $list; @@ -5984,6 +6001,11 @@ class ActiveContextCache { * * @param int size the maximum size of the cache, defaults to 100. */ + + private $order; + private $cache; + private $size; + public function __construct($size=100) { $this->order = array(); $this->cache = new stdClass(); |