# subscription/1.4.2/includes/Frontend.php

Subscriptions for WooCommerce with Stripe Recurring Payments, version 1.4.2. 29 lines.

- Page: https://pluginprobe.com/plugins/subscription/1.4.2/code/includes/Frontend.php
- Raw: https://pluginprobe.com/plugins/subscription/1.4.2/raw/includes/Frontend.php
- Modified: 2025-05-20T14:57:56+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/subscription/1.4.2/code/includes/Frontend.php#L10-L20`.

```php
<?php

namespace SpringDevs\Subscription;

use SpringDevs\Subscription\Frontend\ActionController;
use SpringDevs\Subscription\Frontend\Cart;
use SpringDevs\Subscription\Frontend\Downloadable;
use SpringDevs\Subscription\Frontend\MyAccount;
use SpringDevs\Subscription\Frontend\Order as FrontendOrder;
use SpringDevs\Subscription\Frontend\Product;

/**
 * Frontend handler class
 */
class Frontend {

	/**
	 * Frontend constructor.
	 */
	public function __construct() {
		new Product();
		new Cart();
		new FrontendOrder();
		new ActionController();
		new MyAccount();
		new Downloadable();
	}
}

```
