stanley-king 2 years atrás
parent
commit
10d0f8b28c
3 changed files with 3 additions and 3 deletions
  1. 1 1
      vapi/control/merchant.php
  2. 1 1
      vapi/control/base.php
  3. 1 1
      vapi/index.php

+ 1 - 1
vapi/control/merchant.php

@@ -1,6 +1,6 @@
 <?php
 
-class merchantControl extends baseControl
+class merchantControl extends vbaseControl
 {
     private $mMchid;
     private $mAdminid;

+ 1 - 1
vapi/control/base.php

@@ -1,6 +1,6 @@
 <?php
 
-class baseControl
+class vbaseControl
 {
     public function __construct()
     {

+ 1 - 1
vapi/index.php

@@ -5,5 +5,5 @@
  *
  */
 
-require_once(BASE_PATH . '/control/base.php');
+require_once(BASE_PATH . '/control/vbase.php');
 require_once(BASE_PATH . '/control/merchant.php');