| Conditions | 4 |
| Paths | 8 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | public function push(int $value): void |
||
| 14 | { |
||
| 15 | if (empty($this->stack)) { |
||
| 16 | $this->front = $value; |
||
| 17 | } |
||
| 18 | while (!empty($this->stack)) { |
||
| 19 | $this->cache[] = array_shift($this->stack); |
||
| 20 | } |
||
| 21 | $this->cache[] = $value; |
||
| 22 | while (!empty($this->cache)) { |
||
| 23 | $this->stack[] = array_shift($this->cache); |
||
| 24 | } |
||
| 51 |