1: <?php
2: /**
3: * Provides access to the Combine stream wrapper.
4: *
5: * Copyright 2009-2012 Horde LLC (http://www.horde.org/)
6: *
7: * @author Michael Slusarz <slusarz@horde.org>
8: * @license http://www.horde.org/licenses/bsd BSD
9: * @category Horde
10: * @package Stream_Wrapper
11: */
12:
13: /**
14: * @author Michael Slusarz <slusarz@horde.org>
15: * @license http://www.horde.org/licenses/bsd BSD
16: * @category Horde
17: * @package Stream_Wrapper
18: */
19: interface Horde_Stream_Wrapper_CombineStream
20: {
21: /**
22: * Return a reference to the data.
23: *
24: * @return array
25: */
26: public function getData();
27: }
28: