Stream::getContents()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
ccs 2
cts 2
cp 1
crap 1
rs 10
1
<?php
2
3
namespace Zapheus\Bridge\Psr\Interop;
4
5
use Zapheus\Bridge\Psr\Stream as BaseStream;
6
use Zapheus\Http\Message\StreamInterface;
7
8
/**
9
 * Zapheus to PSR-07 Stream Bridge
10
 *
11
 * NOTE: This stream is a read-only stream since it cannot
12
 * return the resource from the stream of Zapheus. Thus,
13
 * methods such as "getMetadata", "getSize", "eof", "seek",
14
 * and "tell" will not be utilized in this class. It can
15
 * write but only using the implemented Zapheus stream.
16
 *
17
 * @package Zapheus
18
 * @author  Rougin Gutib <[email protected]>
19
 */
20
class Stream extends BaseStream
21
{
22
    /**
23
     * @var \Zapheus\Http\Message\StreamInterface
24
     */
25
    protected $zapheus;
26
27
    /**
28
     * Initializes the stream instance.
29
     *
30
     * @param \Zapheus\Http\Message\StreamInterface $stream
31
     */
32 78
    public function __construct(StreamInterface $stream)
33
    {
34 78
        $this->zapheus = $stream;
35
36 78
        parent::__construct();
37 78
    }
38
39
    /**
40
     * Closes the stream and any underlying resources.
41
     *
42
     * @return void
43
     */
44 6
    public function close()
45
    {
46 6
        $this->zapheus->close();
47 6
    }
48
49
    /**
50
     * Returns the remaining contents in a string
51
     *
52
     * @return string
53
     *
54
     * @throws \RuntimeException
55
     */
56 9
    public function getContents()
57
    {
58 9
        return $this->zapheus->contents();
59
    }
60
61
    /**
62
     * Reads data from the stream.
63
     *
64
     * @param  integer $length
65
     * @return string
66
     */
67 3
    public function read($length)
68
    {
69 3
        return $this->zapheus->read($length);
70
    }
71
72
    /**
73
     * Seeks to the beginning of the stream.
74
     *
75
     * @throws \RuntimeException
76
     */
77 9
    public function rewind()
78
    {
79 9
        $this->zapheus->rewind();
80 9
    }
81
82
    /**
83
     * Writes data to the stream.
84
     *
85
     * @param  string $string
86
     * @return integer
87
     */
88 3
    public function write($string)
89
    {
90 3
        return $this->zapheus->write($string);
91
    }
92
}
93