| Total Complexity | 2 |
| Total Lines | 43 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class PaymentMethodSepaDirectDebit extends PaymentMethod { |
||
| 21 | /** |
||
| 22 | * IBAN. |
||
| 23 | * |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | private $iban; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Owner name. |
||
| 30 | * |
||
| 31 | * @var string |
||
| 32 | */ |
||
| 33 | private $owner_name; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Construct a payment method. |
||
| 37 | * |
||
| 38 | * @param string $type Adyen payment method type. |
||
| 39 | * @param string $iban IBAN. |
||
| 40 | * @param string $owner_name Owner name. |
||
| 41 | */ |
||
| 42 | public function __construct( $type, $iban, $owner_name ) { |
||
| 47 | } |
||
| 48 | |||
| 49 | /** |
||
| 50 | * Get JSON. |
||
| 51 | * |
||
| 52 | * @return object |
||
| 53 | */ |
||
| 54 | public function get_json() { |
||
| 65 |