API.php in Subscriptions for WooCommerce with Stripe Recurring Payments 1.10.8, at includes/API.php
| 1 | <?php |
| 2 | |
| 3 | namespace SpringDevs\Subscription; |
| 4 | |
| 5 | /** |
| 6 | * API Class |
| 7 | */ |
| 8 | class API { |
| 9 | |
| 10 | |
| 11 | /** |
| 12 | * Initialize the class |
| 13 | */ |
| 14 | public function __construct() { |
| 15 | add_action( 'rest_api_init', array( $this, 'register_api' ) ); |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * Register the API |
| 20 | * |
| 21 | * @return void |
| 22 | */ |
| 23 | public function register_api() { |
| 24 | } |
| 25 | } |
| 26 |