| 1 | <?php |
||
| 9 | class ScaleEngineTicket extends Model |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Compare this ticket against another to see whether it references the |
||
| 13 | * same ticket in ScaleEngine. |
||
| 14 | * |
||
| 15 | * For the purposes of this comparison, only the key's have to match. |
||
| 16 | * |
||
| 17 | * @param self $other The other ticket to compare against. |
||
| 18 | * @return boolean Whether the tickets reference the same ticket in |
||
| 19 | * ScaleEngine or not. |
||
| 20 | */ |
||
| 21 | public function isEqual(ScaleEngineTicket $other) |
||
| 25 | } |
||
| 26 |