Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | class Integration extends AbstractIntegration { |
||
18 | public function __construct() { |
||
25 | } |
||
26 | |||
27 | public function get_config_factory_class() { |
||
28 | return __NAMESPACE__ . '\ConfigFactory'; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Get required settings for this integration. |
||
33 | * |
||
34 | * @see https://github.com/wp-premium/gravityforms/blob/1.9.16/includes/fields/class-gf-field-multiselect.php#L21-L42 |
||
35 | * @since 1.0.4 |
||
36 | * @return array |
||
37 | */ |
||
38 | public function get_settings() { |
||
44 | } |
||
45 | } |
||
46 |