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

Commit

Permalink
Adds settable trait
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig Paul committed Oct 21, 2016
1 parent 7401861 commit cb42fa9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/CreditCard.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
* CraigPaul\Moneris\CreditCard
*
* @property-read int $crypt
* @property-read \CraigPaul\Moneris\Customer|null $customer
* @property-read string $expiry
* @property-read string $number
* @property \CraigPaul\Moneris\Customer|null $customer
* @property string $expiry
* @property string $number
*/
class CreditCard
{
use Gettable;
use Gettable, Settable;

/**
* @var int
Expand Down

0 comments on commit cb42fa9

Please sign in to comment.