| 1 | <?php |
||
| 7 | abstract class PersistenceType implements ArrayableInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Lapse the order when the market is turned in-play |
||
| 11 | */ |
||
| 12 | const LAPSE = "LAPSE"; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Persist the order to in-play. The bet will be place automatically into the in-play market at the start of the event |
||
| 16 | */ |
||
| 17 | const PERSIST = "PERSIST"; |
||
| 18 | /** |
||
| 19 | * Put the order into the auction (SP) at turn-in-play |
||
| 20 | */ |
||
| 21 | const MARKET_ON_CLOSE = "MARKET_ON_CLOSE"; |
||
| 22 | |||
| 23 | public static function toArray() |
||
| 27 | } |
||
| 28 |