| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 85 | 4 | public function pop($length = null) |
|
| 86 | { |
||
| 87 | 4 | if ($length === null) { |
|
| 88 | 1 | $data = $this->writeBuffer; |
|
| 89 | 1 | $this->writeBuffer = ''; |
|
| 90 | 1 | } else { |
|
| 91 | 3 | $data = substr($this->writeBuffer, 0, $length); |
|
| 92 | 3 | $this->writeBuffer = substr($this->writeBuffer, $length, strlen($this->writeBuffer) - $length); |
|
| 93 | } |
||
| 94 | |||
| 95 | 4 | return $data; |
|
| 96 | } |
||
| 97 | } |
||
| 98 |