PluginProbe
AliNext – WooCommerce Dropshipping Plugin for AliExpress / trunk
AliNext – WooCommerce Dropshipping Plugin for AliExpress vtrunk
ali2woo-lite / includes / classes / controller / TokenValidatorController.php

TokenValidatorController.php in AliNext – WooCommerce Dropshipping Plugin for AliExpress trunk, at includes/classes/controller/TokenValidatorController.php

21 lines 328 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Description of TokenValidatorController
4 *
5 * @author Ali2Woo Team
6 *
7 * @autoload: a2wl_admin_init
8 */
9
10 namespace AliNext_Lite;;
11
12 class TokenValidatorController
13 {
14 public function __construct(
15 protected AliexpressTokenValidationService $Validator,
16 ) {
17 $this->Validator->validate();
18 }
19
20 }
21