| 1 | <?php |
||
| 19 | class TransactionItem extends Item |
||
| 20 | { |
||
| 21 | private $clearFn; |
||
| 22 | private $isItemDeferedClearedFn; |
||
| 23 | |||
| 24 | public function setClearCallback(callable $clear) |
||
| 28 | |||
| 29 | public function setIsClearedCallback(callable $isItemDeferedCleared) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | */ |
||
| 37 | public function isMiss() |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritdoc} |
||
| 51 | */ |
||
| 52 | public function save() |
||
| 65 | |||
| 66 | /** |
||
| 67 | * {@inheritdoc} |
||
| 68 | */ |
||
| 69 | public function clear() |
||
| 76 | } |
||
| 77 |