# stripe/trunk/src/Block/AbstractBlock.php

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

- Page: https://pluginprobe.com/plugins/stripe/trunk/code/src/Block/AbstractBlock.php
- Raw: https://pluginprobe.com/plugins/stripe/trunk/raw/src/Block/AbstractBlock.php
- Modified: 2022-02-10T17:52:16+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/Block/AbstractBlock.php#L10-L20`.

```php
<?php
/**
 * Block: 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.2
 */

namespace SimplePay\Core\Block;

/**
 * AbstractBlock abstract.
 *
 * @since 4.4.2
 */
abstract class AbstractBlock implements BlockInterface {

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

}

```
