| 1 |
<?php |
| 2 |
|
| 3 |
namespace YayMail\Integrations; |
| 4 |
|
| 5 |
use YayMail\Utils\SingletonTrait; |
| 6 |
// @yaymail-only-start |
| 7 |
use YayMail\Integrations\AdminAndSiteEnhancements\AdminAndSiteEnhancements; |
| 8 |
use YayMail\Integrations\DHL\DHLIntegration; |
| 9 |
use YayMail\Integrations\F4ShippingPhoneAndEmailForWooCommerce\F4ShippingPhoneAndEmailForWooCommerce; |
| 10 |
// @yaymail-only-end |
| 11 |
/** |
| 12 |
* IntegrationsLoader |
| 13 |
* * @method static IntegrationsLoader get_instance() |
| 14 |
*/ |
| 15 |
class IntegrationsLoader { |
| 16 |
use SingletonTrait; |
| 17 |
|
| 18 |
protected function __construct() { |
| 19 |
RankMath::get_instance(); |
| 20 |
// @yaymail-only-start |
| 21 |
F4ShippingPhoneAndEmailForWooCommerce::get_instance(); |
| 22 |
AdminAndSiteEnhancements::get_instance(); |
| 23 |
DHLIntegration::get_instance(); |
| 24 |
// @yaymail-only-end |
| 25 |
} |
| 26 |
} |
| 27 |
|