1: <?php
2: /**
3: * Ingo_Transport_Null implements a null api -- useful for just testing
4: * the UI and storage.
5: *
6: * See the enclosed file LICENSE for license information (ASL). If you
7: * did not receive this file, see http://www.horde.org/licenses/apache.
8: *
9: * @author Brent J. Nordquist <bjn@horde.org>
10: * @package Ingo
11: */
12:
13: class Ingo_Transport_Null extends Ingo_Transport
14: {
15: /**
16: * Constructor.
17: */
18: public function __construct($params = array())
19: {
20: $this->_support_shares = true;
21: parent::__construct($params);
22: }
23:
24: }
25: