Issues (453)

src/Services/CheckoutServiceInterface.php (2 issues)

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
Are you sure the doc-type for parameter $targetWebShop is correct as it would always require null to be passed?
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
Documentation Bug introduced by
Are you sure the doc-type for parameter $targetWebShop is correct as it would always require null to be passed?
Loading history...
31
     *
32
     * @return CheckoutStatusResponse
33
     */
34
    public function getCheckoutStatus($orderReference, $targetWebShop = null);
35
}
36