| 1 | <?php |
||
| 31 | class SplPriorityQueue extends \SplPriorityQueue |
||
| 32 | { |
||
| 33 | protected $order = PHP_INT_MAX; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Insert |
||
| 37 | * |
||
| 38 | * @param mixed $value value |
||
| 39 | * @param mixed $priority order priority |
||
| 40 | * |
||
| 41 | * @return mixed |
||
| 42 | * |
||
| 43 | * @access public |
||
| 44 | */ |
||
| 45 | 4 | public function insert($value, $priority) |
|
| 52 | } |
||
| 53 |