| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | 1 | public function get_config( $post_id ) { |
|
| 30 | 1 | $config = new Config(); |
|
| 31 | |||
| 32 | 1 | $config->post_id = intval( $post_id ); |
|
| 33 | 1 | $config->mode = $this->get_meta( $post_id, 'mode' ); |
|
| 34 | 1 | $config->api_key = $this->get_meta( $post_id, 'adyen_api_key' ); |
|
| 35 | 1 | $config->api_live_url_prefix = $this->get_meta( $post_id, 'adyen_api_live_url_prefix' ); |
|
| 36 | 1 | $config->merchant_account = $this->get_meta( $post_id, 'adyen_merchant_account' ); |
|
| 37 | |||
| 38 | 1 | return $config; |
|
| 39 | } |
||
| 41 |