Total Complexity | 5 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
17 | abstract class AbstractIntegration extends IDeal_AbstractIntegration { |
||
18 | public function __construct() { |
||
19 | // Actions. |
||
20 | $function = array( __NAMESPACE__ . '\Listener', 'listen' ); |
||
21 | |||
22 | if ( ! has_action( 'wp_loaded', $function ) ) { |
||
23 | add_action( 'wp_loaded', $function ); |
||
24 | } |
||
25 | } |
||
26 | |||
27 | public function get_config_factory_class() { |
||
28 | return __NAMESPACE__ . '\ConfigFactory'; |
||
29 | } |
||
30 | |||
31 | public function get_settings_class() { |
||
35 | ); |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * Get required settings for this integration. |
||
40 | * |
||
41 | * @link https://github.com/wp-premium/gravityforms/blob/1.9.16/includes/fields/class-gf-field-multiselect.php#L21-L42 |
||
42 | * @since 1.1.3 |
||
43 | * @return array |
||
44 | */ |
||
45 | public function get_settings() { |
||
51 | } |
||
52 | } |
||
53 |
In the issue above, the returned value is violating the contract defined by the mentioned interface.
Let's take a look at an example: