1 | <?php |
||
8 | trait PurchaseResultTrait |
||
9 | { |
||
10 | protected $success = []; |
||
11 | |||
12 | protected $error = []; |
||
13 | |||
14 | protected $pending = []; |
||
15 | |||
16 | protected function resetPurchaseResults() |
||
22 | |||
23 | public function getErrorPurchaseExceptions() |
||
27 | |||
28 | public function getSuccessPurchases() |
||
32 | |||
33 | public function getPendingPurchaseExceptions() |
||
37 | } |
||
38 |