| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class Integration extends AbstractIntegration { |
||
| 9 | public function __construct() { |
||
| 10 | parent::__construct(); |
||
| 11 | |||
| 12 | $this->id = 'ogone-orderstandard'; |
||
| 13 | $this->name = 'Ingenico/Ogone - e-Commerce'; |
||
| 14 | } |
||
| 15 | |||
| 16 | public function get_config_factory_class() { |
||
| 17 | return __NAMESPACE__ . '\ConfigFactory'; |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Get settings fields. |
||
| 22 | * |
||
| 23 | * @return array |
||
| 24 | */ |
||
| 25 | public function get_settings_fields() { |
||
| 27 | } |
||
| 28 | } |
||
| 29 |