| Total Complexity | 4 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class Integration extends AbstractIntegration { |
||
| 23 | public function __construct() { |
||
| 24 | $this->id = 'adyen'; |
||
| 25 | $this->name = 'Adyen'; |
||
| 26 | $this->url = 'http://www.adyen.com/'; |
||
| 27 | $this->provider = 'adyen'; |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Get config factory class. |
||
| 32 | * |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | public function get_config_factory_class() { |
||
| 37 | } |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Get settings class. |
||
| 41 | * |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | public function get_settings_class() { |
||
| 46 | } |
||
| 47 | |||
| 48 | /** |
||
| 49 | * Get required settings for this integration. |
||
| 50 | * |
||
| 51 | * @link https://github.com/wp-premium/gravityforms/blob/1.9.16/includes/fields/class-gf-field-multiselect.php#L21-L42 |
||
| 52 | * @since 1.1.6 |
||
| 53 | * @return array |
||
| 54 | */ |
||
| 55 | public function get_settings() { |
||
| 61 | } |
||
| 62 | } |
||
| 63 |