Lines Matching +full:restore +full:- +full:keys
14 * This trait allows easy access to the context, and allows the end-user to
15 * override its settings for document fragments, and easily restore it again
18 * @copyright Copyright (C) 2009-2015 fruux GmbH (https://fruux.com/).
26 * notation) as keys and PHP class names as values.
43 * common use-case for parsing XML documents, it's added here as a
70 * The keys in this classmap need to be fully qualified PHP class names,
91 * namespaceMap. After you're done, you can restore the old data again
98 $this->contextStack[] = [
99 $this->elementMap,
100 $this->contextUri,
101 $this->namespaceMap,
102 $this->classMap
108 * Restore the previous "context".
115 $this->elementMap,
116 $this->contextUri,
117 $this->namespaceMap,
118 $this->classMap
119 ) = array_pop($this->contextStack);