Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
29 | public function fread() { |
||
30 | if ($this->currentPosition >= \strlen($this->content)) { |
||
31 | return false; |
||
32 | } |
||
33 | $chunk = \substr($this->content, $this->currentPosition, $this->chunkSize); |
||
34 | $this->currentPosition = $this->currentPosition + $this->chunkSize; |
||
35 | |||
36 | return $chunk; |
||
37 | } |
||
38 | } |
||
39 |