Skip to content
This repository was archived by the owner on Oct 24, 2023. It is now read-only.

Commit 4da5d46

Browse files
author
Jens Schulze
committed
docs(Changelog): update changelog
1 parent e279d1a commit 4da5d46

File tree

3 files changed

+46
-1
lines changed

3 files changed

+46
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
### Features
66

77
* **LineItems:** add update actions for custom types on line items ([c64fad0](https://github.com/sphereio/commercetools-php-sdk/commit/c64fad0))
8-
* **Payment:** add payment update actions for cart ([13e1860](https://github.com/sphereio/commercetools-php-sdk/commit/13e1860))
8+
* **Payment:** add payment info to cart and order ([e279d1a](https://github.com/sphereio/commercetools-php-sdk/commit/e279d1a))
9+
* **Payment:** add payment update actions for cart and order ([13e1860](https://github.com/sphereio/commercetools-php-sdk/commit/13e1860))
910

1011

1112

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
/**
3+
* @author @ct-jensschulze <[email protected]>
4+
*/
5+
6+
namespace Commercetools\Core\Request\Orders\Command;
7+
8+
use Commercetools\Core\Request\Carts\Command\CartAddPaymentAction;
9+
use Commercetools\Core\Model\Payment\PaymentReference;
10+
11+
/**
12+
* @package Commercetools\Core\Request\Orders\Command
13+
*
14+
* @method string getAction()
15+
* @method OrderAddPaymentAction setAction(string $action = null)
16+
* @method PaymentReference getPayment()
17+
* @method OrderAddPaymentAction setPayment(PaymentReference $payment = null)
18+
*/
19+
class OrderAddPaymentAction extends CartAddPaymentAction
20+
{
21+
22+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
/**
3+
* @author @ct-jensschulze <[email protected]>
4+
*/
5+
6+
namespace Commercetools\Core\Request\Orders\Command;
7+
8+
use Commercetools\Core\Request\Carts\Command\CartRemovePaymentAction;
9+
use Commercetools\Core\Model\Payment\PaymentReference;
10+
11+
/**
12+
* @package Commercetools\Core\Request\Orders\Command
13+
*
14+
* @method string getAction()
15+
* @method OrderRemovePaymentAction setAction(string $action = null)
16+
* @method PaymentReference getPayment()
17+
* @method OrderRemovePaymentAction setPayment(PaymentReference $payment = null)
18+
*/
19+
class OrderRemovePaymentAction extends CartRemovePaymentAction
20+
{
21+
22+
}

0 commit comments

Comments
 (0)