| 1 | <?php |
||
| 26 | class CartClear extends AbstractOperation |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * {@inheritdoc} |
||
| 30 | */ |
||
| 31 | 1 | public function getName() |
|
| 35 | |||
| 36 | /** |
||
| 37 | * Returns the cart id |
||
| 38 | * |
||
| 39 | * @return string |
||
| 40 | */ |
||
| 41 | 1 | public function getCartId() |
|
| 45 | |||
| 46 | /** |
||
| 47 | * Sets the cart id |
||
| 48 | * |
||
| 49 | * @param string $cartId |
||
| 50 | */ |
||
| 51 | 2 | public function setCartId($cartId) |
|
| 55 | |||
| 56 | /** |
||
| 57 | * Returns the HMAC |
||
| 58 | * |
||
| 59 | * @return mixed |
||
| 60 | */ |
||
| 61 | 1 | public function getHMAC() |
|
| 65 | |||
| 66 | /** |
||
| 67 | * Sets the HMAC |
||
| 68 | * |
||
| 69 | * @param string $HMAC |
||
| 70 | */ |
||
| 71 | 2 | public function setHMAC($HMAC) |
|
| 75 | } |
||
| 76 |