| Total Complexity | 4 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php declare(strict_types=1); |
||
| 8 | trait HasDefaultRemoveAndElement |
||
| 9 | { |
||
| 10 | 12 | public function remove(): Envelope |
|
| 11 | { |
||
| 12 | 12 | return $this->returnOrThrowNoSuchElement($this->poll()); |
|
|
|
|||
| 13 | } |
||
| 14 | |||
| 15 | 11 | public function element(): Envelope |
|
| 18 | } |
||
| 19 | |||
| 20 | 18 | private function returnOrThrowNoSuchElement(?Envelope $envelope = null): Envelope |
|
| 27 | } |
||
| 28 | } |
||
| 29 |