Skip to content

Commit 935566d

Browse files
dvesh3actions-user
authored andcommitted
Apply php-cs-fixer changes
1 parent c4ea6c0 commit 935566d

File tree

5 files changed

+32
-21
lines changed

5 files changed

+32
-21
lines changed

src/DependencyInjection/PimcorePaymentProviderUnzerExtension.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
<?php
2+
23
/**
34
* Pimcore
45
*
56
* This source file is available under two different licenses:
67
* - GNU General Public License version 3 (GPLv3)
7-
* - Pimcore Enterprise License (PEL)
8+
* - Pimcore Commercial License (PCL)
89
* Full copyright and license information is available in
910
* LICENSE.md which is distributed with this source code.
1011
*
11-
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
12-
* @license http://www.pimcore.org/license GPLv3 and PEL
12+
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
13+
* @license http://www.pimcore.org/license GPLv3 and PCL
1314
*/
1415

1516
namespace Pimcore\Bundle\EcommerceFrameworkBundle\DependencyInjection;

src/PaymentManager/Payment/Unzer.php

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,39 @@
11
<?php
2+
23
/**
34
* Pimcore
45
*
56
* This source file is available under two different licenses:
67
* - GNU General Public License version 3 (GPLv3)
7-
* - Pimcore Enterprise License (PEL)
8+
* - Pimcore Commercial License (PCL)
89
* Full copyright and license information is available in
910
* LICENSE.md which is distributed with this source code.
1011
*
11-
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
12-
* @license http://www.pimcore.org/license GPLv3 and PEL
12+
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
13+
* @license http://www.pimcore.org/license GPLv3 and PCL
1314
*/
1415

1516
namespace Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\Payment;
1617

1718
use Carbon\Carbon;
18-
use Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\V7\Payment\StartPaymentResponse\StartPaymentResponseInterface;
19-
use UnzerSDK\Exceptions\UnzerApiException;
20-
use UnzerSDK\Resources\CustomerFactory;
21-
use UnzerSDK\Resources\EmbeddedResources\Address;
22-
use UnzerSDK\Resources\Payment;
23-
use UnzerSDK\Resources\TransactionTypes\Cancellation;
2419
use Pimcore\Bundle\EcommerceFrameworkBundle\Exception\UnsupportedException;
2520
use Pimcore\Bundle\EcommerceFrameworkBundle\Factory;
2621
use Pimcore\Bundle\EcommerceFrameworkBundle\OrderManager\OrderAgentInterface;
2722
use Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\Status;
2823
use Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\StatusInterface;
2924
use Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\V7\Payment\PaymentInterface;
3025
use Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\V7\Payment\StartPaymentRequest\AbstractRequest;
26+
use Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\V7\Payment\StartPaymentResponse\StartPaymentResponseInterface;
3127
use Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\V7\Payment\StartPaymentResponse\UrlResponse;
3228
use Pimcore\Bundle\EcommerceFrameworkBundle\PriceSystem\PriceInterface;
3329
use Pimcore\Localization\LocaleService;
3430
use Pimcore\Model\DataObject\Objectbrick\Data\PaymentProviderUnzer;
3531
use Pimcore\Model\DataObject\OnlineShopOrder;
32+
use UnzerSDK\Exceptions\UnzerApiException;
33+
use UnzerSDK\Resources\CustomerFactory;
34+
use UnzerSDK\Resources\EmbeddedResources\Address;
35+
use UnzerSDK\Resources\Payment;
36+
use UnzerSDK\Resources\TransactionTypes\Cancellation;
3637

3738
class Unzer extends AbstractPayment implements PaymentInterface
3839
{

src/PaymentManager/V7/Payment/StartPaymentRequest/UnzerRequest.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
<?php
2+
23
/**
34
* Pimcore
45
*
56
* This source file is available under two different licenses:
67
* - GNU General Public License version 3 (GPLv3)
7-
* - Pimcore Enterprise License (PEL)
8+
* - Pimcore Commercial License (PCL)
89
* Full copyright and license information is available in
910
* LICENSE.md which is distributed with this source code.
1011
*
11-
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
12-
* @license http://www.pimcore.org/license GPLv3 and PEL
12+
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
13+
* @license http://www.pimcore.org/license GPLv3 and PCL
1314
*/
1415

1516
namespace Pimcore\Bundle\EcommerceFrameworkBundle\PaymentManager\V7\Payment\StartPaymentRequest;

src/PimcorePaymentProviderUnzerBundle.php

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@
33
/**
44
* Pimcore
55
*
6-
* This source file is available under following license:
7-
* - Pimcore Enterprise License (PEL)
6+
* This source file is available under two different licenses:
7+
* - GNU General Public License version 3 (GPLv3)
8+
* - Pimcore Commercial License (PCL)
9+
* Full copyright and license information is available in
10+
* LICENSE.md which is distributed with this source code.
811
*
912
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
10-
* @license http://www.pimcore.org/license PEL
13+
* @license http://www.pimcore.org/license GPLv3 and PCL
1114
*/
15+
1216
namespace Pimcore\Bundle\EcommerceFrameworkBundle;
1317

1418
use Pimcore\Bundle\EcommerceFrameworkBundle\Unzer\Installer;

src/Unzer/Installer.php

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@
33
/**
44
* Pimcore
55
*
6-
* This source file is available under following license:
7-
* - Pimcore Enterprise License (PEL)
6+
* This source file is available under two different licenses:
7+
* - GNU General Public License version 3 (GPLv3)
8+
* - Pimcore Commercial License (PCL)
9+
* Full copyright and license information is available in
10+
* LICENSE.md which is distributed with this source code.
811
*
912
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
10-
* @license http://www.pimcore.org/license PEL
13+
* @license http://www.pimcore.org/license GPLv3 and PCL
1114
*/
15+
1216
namespace Pimcore\Bundle\EcommerceFrameworkBundle\Unzer;
1317

1418
use Pimcore\Bundle\EcommerceFrameworkBundle\Tools\PaymentProviderInstaller;

0 commit comments

Comments
 (0)