| 1 |
<?php |
| 2 |
/** |
| 3 |
* Integration: Abstract |
| 4 |
* |
| 5 |
* @package SimplePay |
| 6 |
* @subpackage Core |
| 7 |
* @copyright Copyright (c) 2022, Sandhills Development, LLC |
| 8 |
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 9 |
* @since 4.4.3 |
| 10 |
*/ |
| 11 |
|
| 12 |
namespace SimplePay\Core\Integration; |
| 13 |
|
| 14 |
use SimplePay\Core\AbstractPluginServiceProvider; |
| 15 |
|
| 16 |
/** |
| 17 |
* AbstractIntegration class. |
| 18 |
* |
| 19 |
* @since 4.4.3 |
| 20 |
*/ |
| 21 |
abstract class AbstractIntegration extends AbstractPluginServiceProvider implements IntegrationInterface { |
| 22 |
|
| 23 |
/** |
| 24 |
* {@inheritdoc} |
| 25 |
*/ |
| 26 |
abstract public function get_id(); |
| 27 |
|
| 28 |
/** |
| 29 |
* {@inheritdoc} |
| 30 |
*/ |
| 31 |
abstract public function is_active(); |
| 32 |
|
| 33 |
} |
| 34 |
|