etrias-nl /
paazl-connector
| 1 | <?php |
||
| 2 | |||
| 3 | /* |
||
| 4 | * This file is part of PHP CS Fixer. |
||
| 5 | * |
||
| 6 | * (c) Fabien Potencier <[email protected]> |
||
| 7 | * Dariusz RumiĆski <[email protected]> |
||
| 8 | * |
||
| 9 | * This source file is subject to the MIT license that is bundled |
||
| 10 | * with this source code in the file LICENSE. |
||
| 11 | */ |
||
| 12 | |||
| 13 | namespace Etrias\PaazlConnector\Services; |
||
| 14 | |||
| 15 | use Etrias\PaazlConnector\SoapTypes\CheckoutResponse; |
||
| 16 | use Etrias\PaazlConnector\SoapTypes\CheckoutStatusResponse; |
||
| 17 | |||
| 18 | interface CheckoutServiceInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @param $orderReference |
||
| 22 | * @param null $targetWebShop |
||
|
0 ignored issues
–
show
Documentation
Bug
introduced
by
Loading history...
|
|||
| 23 | * |
||
| 24 | * @return CheckoutResponse |
||
| 25 | */ |
||
| 26 | public function getCheckoutUrl($orderReference, $targetWebShop = null); |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param $orderReference |
||
| 30 | * @param null $targetWebShop |
||
|
0 ignored issues
–
show
|
|||
| 31 | * |
||
| 32 | * @return CheckoutStatusResponse |
||
| 33 | */ |
||
| 34 | public function getCheckoutStatus($orderReference, $targetWebShop = null); |
||
| 35 | } |
||
| 36 |