| 1 | <?php |
||
| 16 | trait PurchaseResultTrait |
||
| 17 | { |
||
| 18 | protected $success = []; |
||
| 19 | |||
| 20 | protected $error = []; |
||
| 21 | |||
| 22 | protected $pending = []; |
||
| 23 | |||
| 24 | protected function resetPurchaseResults() |
||
| 30 | |||
| 31 | public function getErrorPurchaseExceptions() |
||
| 35 | |||
| 36 | public function getSuccessPurchases() |
||
| 40 | |||
| 41 | public function getPendingPurchaseExceptions() |
||
| 45 | } |
||
| 46 |