File: StringStream.php

package info (click to toggle)
php-horde-stream-wrapper 2.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 148 kB
  • sloc: php: 336; xml: 321; sh: 3; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 843 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
 * Copyright 2007-2017 Horde LLC (http://www.horde.org/)
 *
 * See the enclosed file COPYING for license information (BSD). If you
 * did not receive this file, see http://www.horde.org/licenses/bsd.
 *
 * @category  Horde
 * @copyright 2007-2017 Horde LLC
 * @license   http://www.horde.org/licenses/bsd BSD
 * @package   Stream_Wrapper
 */

/**
 * Provides access to the StringStream stream wrapper.
 *
 * @author     Chuck Hagenbuch <chuck@horde.org>
 * @category   Horde
 * @copyright  2007-2016 Horde LLC
 * @deprecated Use Horde_Stream_Wrapper_String::getStream()
 * @license    http://www.horde.org/licenses/bsd BSD
 * @package    Stream_Wrapper
 */
interface Horde_Stream_Wrapper_StringStream
{
    /**
     * Return a reference to the wrapped string.
     *
     * @return string
     */
    public function &getString();
}