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

Commit

Permalink
docs(Changelog): update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Jens Schulze committed Oct 7, 2015
1 parent e279d1a commit 4da5d46
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
### Features

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



Expand Down
22 changes: 22 additions & 0 deletions src/Request/Orders/Command/OrderAddPaymentAction.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php
/**
* @author @ct-jensschulze <jens.schulze@commercetools.de>
*/

namespace Commercetools\Core\Request\Orders\Command;

use Commercetools\Core\Request\Carts\Command\CartAddPaymentAction;
use Commercetools\Core\Model\Payment\PaymentReference;

/**
* @package Commercetools\Core\Request\Orders\Command
*
* @method string getAction()
* @method OrderAddPaymentAction setAction(string $action = null)
* @method PaymentReference getPayment()
* @method OrderAddPaymentAction setPayment(PaymentReference $payment = null)
*/
class OrderAddPaymentAction extends CartAddPaymentAction
{

}
22 changes: 22 additions & 0 deletions src/Request/Orders/Command/OrderRemovePaymentAction.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php
/**
* @author @ct-jensschulze <jens.schulze@commercetools.de>
*/

namespace Commercetools\Core\Request\Orders\Command;

use Commercetools\Core\Request\Carts\Command\CartRemovePaymentAction;
use Commercetools\Core\Model\Payment\PaymentReference;

/**
* @package Commercetools\Core\Request\Orders\Command
*
* @method string getAction()
* @method OrderRemovePaymentAction setAction(string $action = null)
* @method PaymentReference getPayment()
* @method OrderRemovePaymentAction setPayment(PaymentReference $payment = null)
*/
class OrderRemovePaymentAction extends CartRemovePaymentAction
{

}

0 comments on commit 4da5d46

Please # to comment.