Skip to content

Commit

Permalink
Merge pull request #16 from Payum/deprecate-doctrine-payment-details-…
Browse files Browse the repository at this point in the history
…classes

[doctrine] deprecated entities and documents models.
  • Loading branch information
makasim committed Nov 1, 2013
2 parents 08ad3f8 + 7ecce94 commit bc52317
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 0 deletions.
8 changes: 8 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
0.6 to 0.7
==========

* [Doctrine] `Payum\Paypal\ExpressCheckout\Nvp\Bridge\Doctrine\Entity\PaymentDetails` is deprecated. Use `Payum\Paypal\ExpressCheckout\Nvp\Model\PaymentDetails` model.
* [Doctrine] `Payum\Paypal\ExpressCheckout\Nvp\Bridge\Doctrine\Entity\RecurringPaymentDetails` is deprecated. Use `Payum\Paypal\ExpressCheckout\Nvp\Model\RecurringPaymentDetails` model.
* [Doctrine] `Payum\Paypal\ExpressCheckout\Nvp\Bridge\Doctrine\Document\PaymentDetails` is deprecated. Use `Payum\Paypal\ExpressCheckout\Nvp\Model\PaymentDetails` model.
* [Doctrine] `Payum\Paypal\ExpressCheckout\Nvp\Bridge\Doctrine\Document\RecurringPaymentDetails` is deprecated. Use `Payum\Paypal\ExpressCheckout\Nvp\Model\RecurringPaymentDetails` model.

0.4 to 0.5
==========

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
use Doctrine\ODM\MongoDB\Mapping\Annotations as ODM;
use Payum\Paypal\ExpressCheckout\Nvp\Model\PaymentDetails as BasePaymentDetails;

/**
* @deprecated since 0.6.1 will be removed in 0.7
*/
class PaymentDetails extends BasePaymentDetails
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
use Doctrine\ODM\MongoDB\Mapping\Annotations as ODM;
use Payum\Paypal\ExpressCheckout\Nvp\Model\RecurringPaymentDetails as BaseRecurringPaymentDetails;

/**
* @deprecated since 0.6.1 will be removed in 0.7
*/
class RecurringPaymentDetails extends BaseRecurringPaymentDetails
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@

use Payum\Paypal\ExpressCheckout\Nvp\Model\PaymentDetails as BasePaymentDetails;

/**
* @deprecated since 0.6.1 will be removed in 0.7
*/
class PaymentDetails extends BasePaymentDetails
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@

use Payum\Paypal\ExpressCheckout\Nvp\Model\RecurringPaymentDetails as BaseRecurringPaymentDetails;

/**
* @deprecated since 0.6.1 will be removed in 0.7
*/
class RecurringPaymentDetails extends BaseRecurringPaymentDetails
{
/**
Expand Down

0 comments on commit bc52317

Please sign in to comment.