| 1 |
<?php |
| 2 |
/** |
| 3 |
* License: License aware interface |
| 4 |
* |
| 5 |
* @package SimplePay |
| 6 |
* @subpackage Core |
| 7 |
* @copyright Copyright (c) 2021, Sandhills Development, LLC |
| 8 |
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 9 |
* @since 4.4.1 |
| 10 |
*/ |
| 11 |
|
| 12 |
namespace SimplePay\Core\License; |
| 13 |
|
| 14 |
/** |
| 15 |
* LicenseAwareInterface interface. |
| 16 |
* |
| 17 |
* @since 4.4.1 |
| 18 |
*/ |
| 19 |
interface LicenseAwareInterface { |
| 20 |
|
| 21 |
/** |
| 22 |
* Sets the license. |
| 23 |
* |
| 24 |
* @since 4.1.1 |
| 25 |
* |
| 26 |
* @param \SimplePay\Core\License\License $license License. |
| 27 |
* @return void |
| 28 |
*/ |
| 29 |
public function set_license( License $license ); |
| 30 |
|
| 31 |
} |
| 32 |
|