-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some fixes for VerifyEnrollmentDataBuilder and IP for generation for B2P
- Loading branch information
Olga Zdančuka
committed
Jul 20, 2018
1 parent
4da2629
commit 03e71de
Showing
2 changed files
with
22 additions
and
1 deletion.
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
21 changes: 21 additions & 0 deletions
21
lib/TransactPRO/Gate/Builders/VerifyEnrollmentDataBuilder.php
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,21 @@ | ||
<?php | ||
namespace TransactPRO\Gate\Builders; | ||
|
||
class VerifyEnrollmentDataBuilder extends Builder | ||
{ | ||
public function build() | ||
{ | ||
return array( | ||
'cc' => $this->getField('cc'), | ||
'mid' => $this->getField('mid'), | ||
'currency' => $this->getField('currency'), | ||
); | ||
} | ||
|
||
protected function checkData() | ||
{ | ||
$this->checkMandatoryField('cc'); | ||
$this->checkMandatoryField('mid'); | ||
$this->checkMandatoryField('currency'); | ||
} | ||
} |