-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from ixopay/feature/sender-account-pan
SenderAccountPan for AFT
- Loading branch information
Showing
6 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
namespace Ixopay\Client\Transaction\Base; | ||
|
||
interface SenderAccountPanInterface | ||
{ | ||
public function getSenderAccountReferenceUuid(); | ||
public function setSenderAccountReferenceUuid(string $senderAccountReferenceUuid); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
namespace Ixopay\Client\Transaction\Base; | ||
|
||
trait SenderAccountPanTrait | ||
{ | ||
/** @var null|string */ | ||
protected $senderAccountReferenceUuid = null; | ||
|
||
/** @return null|string */ | ||
public function getSenderAccountReferenceUuid() | ||
{ | ||
return $this->senderAccountReferenceUuid; | ||
} | ||
|
||
/** @param string $senderAccountReferenceUuid */ | ||
public function setSenderAccountReferenceUuid($senderAccountReferenceUuid) | ||
{ | ||
$this->senderAccountReferenceUuid = $senderAccountReferenceUuid; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters