1: <?php
2: /**
3: * Copyright 2003-2012 Horde LLC (http://www.horde.org/)
4: *
5: * See the enclosed file COPYING for license information (LGPL). If you
6: * did not receive this file, see http://www.horde.org/licenses/lgpl21.
7: *
8: * @author Anthony Mills <amills@pyramid6.com>
9: * @package Xml_Wbxml
10: */
11: class Horde_Xml_Wbxml_HashTable
12: {
13: protected $_h;
14:
15: public function set($k, $v)
16: {
17: $this->_h[$k] = $v;
18: }
19:
20: public function get($k)
21: {
22: return isset($this->_h[$k]) ? $this->_h[$k] : null;
23: }
24: }
25: