Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
53 | public function getData() |
||
54 | { |
||
55 | $offset = $this->stream->tell(); |
||
56 | if (!is_int($offset)) { |
||
57 | throw new RuntimeException('Unable to get profile data'); |
||
58 | } |
||
59 | |||
60 | $this->stream->seek(0); |
||
61 | $data = $this->stream->getContents(); |
||
62 | $this->stream->seek($offset); |
||
63 | |||
64 | return $data; |
||
65 | } |
||
66 | |||
85 |