| Total Complexity | 2 |
| Total Lines | 48 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | class IDealIssuersRequestMessage extends RequestMessage { |
||
| 19 | /** |
||
| 20 | * The document element name |
||
| 21 | * |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | const NAME = 'idealissuers'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Merchant. |
||
| 28 | * |
||
| 29 | * @var Merchant |
||
| 30 | */ |
||
| 31 | public $merchant; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Constructs and initialize an directory response message |
||
| 35 | * |
||
| 36 | * @param Merchant $merchant Merchant. |
||
| 37 | */ |
||
| 38 | 1 | public function __construct( Merchant $merchant ) { |
|
| 39 | 1 | parent::__construct( self::NAME ); |
|
| 40 | |||
| 41 | 1 | $this->merchant = $merchant; |
|
| 42 | 1 | } |
|
| 43 | |||
| 44 | /** |
||
| 45 | * Get document |
||
| 46 | * |
||
| 47 | * @see Pronamic_Gateways_IDealAdvancedV3_XML_RequestMessage::get_document() |
||
| 48 | */ |
||
| 49 | 1 | public function get_document() { |
|
| 66 | } |
||
| 67 | } |
||
| 68 |