| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function get_config( $post_id ) { |
||
| 30 | $config = new Config(); |
||
| 31 | |||
| 32 | $config->post_id = intval( $post_id ); |
||
| 33 | $config->mode = $this->get_meta( $post_id, 'mode' ); |
||
| 34 | $config->api_key = $this->get_meta( $post_id, 'adyen_api_key' ); |
||
| 35 | $config->merchant_account = $this->get_meta( $post_id, 'adyen_merchant_account' ); |
||
| 36 | |||
| 37 | return $config; |
||
| 38 | } |
||
| 40 |