# stripe/trunk/src/Integration/AbstractIntegration.php

Stripe Payment Forms by WP Simple Pay – Accept Credit Card Payments + Subscriptions with Stripe, version trunk. 34 lines.

- Page: https://pluginprobe.com/plugins/stripe/trunk/code/src/Integration/AbstractIntegration.php
- Raw: https://pluginprobe.com/plugins/stripe/trunk/raw/src/Integration/AbstractIntegration.php
- Modified: 2022-03-03T18:49:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/stripe/trunk/code/src/Integration/AbstractIntegration.php#L10-L20`.

```php
<?php
/**
 * Integration: Abstract
 *
 * @package SimplePay
 * @subpackage Core
 * @copyright Copyright (c) 2022, Sandhills Development, LLC
 * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
 * @since 4.4.3
 */

namespace SimplePay\Core\Integration;

use SimplePay\Core\AbstractPluginServiceProvider;

/**
 * AbstractIntegration class.
 *
 * @since 4.4.3
 */
abstract class AbstractIntegration extends AbstractPluginServiceProvider implements IntegrationInterface {

	/**
	 * {@inheritdoc}
	 */
	abstract public function get_id();

	/**
	 * {@inheritdoc}
	 */
	abstract public function is_active();

}

```
