-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6b1fa94
commit a997eaa
Showing
7 changed files
with
190 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
namespace Stelin\Meta; | ||
|
||
/** | ||
* Action Mark | ||
* | ||
* Transfer OVO | ||
* Transfer Antar BANK | ||
*/ | ||
class ActionMark | ||
{ | ||
const TRANSFER_OVO = 'trf_ovo'; | ||
const TRANSFER_BANK = 'trf_other_bank'; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
namespace Stelin\Response; | ||
|
||
class BankResponse | ||
{ | ||
private $resp; | ||
|
||
public function __construct($data) | ||
{ | ||
$this->resp = $data; | ||
} | ||
|
||
/** | ||
* Get Bank Transfer Response | ||
* | ||
* @return mixed | ||
*/ | ||
public function getBankResponse() | ||
{ | ||
return $this->resp; | ||
} | ||
} |
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,26 @@ | ||
<?php | ||
|
||
namespace Stelin\Response; | ||
|
||
/** | ||
* LIST BANK | ||
*/ | ||
class Ref_BankResponse | ||
{ | ||
private $response; | ||
|
||
public function __construct($data) | ||
{ | ||
$this->response = $data; | ||
} | ||
|
||
/** | ||
* response | ||
* | ||
* @return void | ||
*/ | ||
public function getRefBankResponse() | ||
{ | ||
return $this->response; | ||
} | ||
} |
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,17 @@ | ||
<?php | ||
namespace Stelin\Response; | ||
|
||
class TransferDirectResponse | ||
{ | ||
private $resp; | ||
|
||
public function __construct($data) | ||
{ | ||
$this->resp = $data; | ||
} | ||
|
||
public function getTransferDirectResponse() | ||
{ | ||
return $this->resp; | ||
} | ||
} |
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,18 @@ | ||
<?php | ||
|
||
namespace Stelin\Response; | ||
|
||
class TransferInquiryResponse | ||
{ | ||
private $response; | ||
|
||
public function __construct($data) | ||
{ | ||
$this->response = $data; | ||
} | ||
|
||
public function getTransferInquiryResponse() | ||
{ | ||
return $this->response; | ||
} | ||
} |