This repository was archived by the owner on Oct 24, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +46
-1
lines changed
src/Request/Orders/Command Expand file tree Collapse file tree 3 files changed +46
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments