Conditions | 3 |
Paths | 3 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
44 | 13 | public function pop() |
|
45 | { |
||
46 | 13 | if (!$this->queue->isEmpty()) { |
|
47 | 13 | $this->queue->setExtractFlags(\SplPriorityQueue::EXTR_PRIORITY); |
|
48 | 13 | $priority = $this->queue->top(); |
|
49 | |||
50 | 13 | if (time() + $priority[0] >= 0) { |
|
51 | 13 | $this->queue->setExtractFlags(\SplPriorityQueue::EXTR_DATA); |
|
52 | |||
53 | 13 | return $this->queue->extract(); |
|
54 | } |
||
55 | 1 | } |
|
56 | |||
57 | 2 | throw new NoItemAvailableException($this); |
|
58 | } |
||
59 | |||
77 |