# stripe/trunk/src/License/LicenseAwareInterface.php

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

- Page: https://pluginprobe.com/plugins/stripe/trunk/code/src/License/LicenseAwareInterface.php
- Raw: https://pluginprobe.com/plugins/stripe/trunk/raw/src/License/LicenseAwareInterface.php
- Modified: 2022-06-01T16:56:48+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/License/LicenseAwareInterface.php#L10-L20`.

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

namespace SimplePay\Core\License;

/**
 * LicenseAwareInterface interface.
 *
 * @since 4.4.1
 */
interface LicenseAwareInterface {

	/**
	 * Sets the license.
	 *
	 * @since 4.1.1
	 *
	 * @param \SimplePay\Core\License\License $license License.
	 * @return void
	 */
	public function set_license( License $license );

}

```
