| 1 | <?php |
||
| 14 | class ItemList extends \SplMaxHeap |
||
| 15 | { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Compare elements in order to place them correctly in the heap while sifting up. |
||
| 19 | * |
||
| 20 | * @see \SplMaxHeap::compare() |
||
| 21 | * |
||
| 22 | * @param mixed $itemA |
||
| 23 | * @param mixed $itemB |
||
| 24 | * |
||
| 25 | * @return int |
||
|
|
|||
| 26 | */ |
||
| 27 | 34 | public function compare($itemA, $itemB) |
|
| 28 | { |
||
| 29 | 34 | if ($itemA->getVolume() > $itemB->getVolume()) { |
|
| 30 | 17 | return 1; |
|
| 31 | 34 | } elseif ($itemA->getVolume() < $itemB->getVolume()) { |
|
| 32 | 14 | return -1; |
|
| 33 | } else { |
||
| 34 | 32 | return $itemA->getWeight() - $itemB->getWeight(); |
|
| 35 | } |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Get copy of this list as a standard PHP array |
||
| 40 | * @return array |
||
| 41 | */ |
||
| 42 | 24 | public function asArray() |
|
| 50 | } |
||
| 51 |
This check compares the return type specified in the
@returnannotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.