diff --git a/Server/extend/AccountWeight/UnitWeight/ActivityWeigth.php b/Server/extend/AccountWeight/UnitWeight/ActivityWeigth.php index 5763ea4f1..489639829 100644 --- a/Server/extend/AccountWeight/UnitWeight/ActivityWeigth.php +++ b/Server/extend/AccountWeight/UnitWeight/ActivityWeigth.php @@ -3,7 +3,7 @@ namespace AccountWeight\UnitWeight; use app\common\model\WechatCustomer as WechatCustomerModel; -use library\interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; +use library\Interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; class ActivityWeigth implements WechatAccountWeightResultSetInterface { diff --git a/Server/extend/AccountWeight/UnitWeight/AgeWeight.php b/Server/extend/AccountWeight/UnitWeight/AgeWeight.php index 02a2833e0..eb40c8361 100644 --- a/Server/extend/AccountWeight/UnitWeight/AgeWeight.php +++ b/Server/extend/AccountWeight/UnitWeight/AgeWeight.php @@ -3,7 +3,7 @@ namespace AccountWeight\UnitWeight; use app\common\model\WechatCustomer as WechatCustomerModel; -use library\interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; +use library\Interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; class AgeWeight implements WechatAccountWeightResultSetInterface { diff --git a/Server/extend/AccountWeight/UnitWeight/RealNameWeight.php b/Server/extend/AccountWeight/UnitWeight/RealNameWeight.php index 417ebf9f2..e2dec3da1 100644 --- a/Server/extend/AccountWeight/UnitWeight/RealNameWeight.php +++ b/Server/extend/AccountWeight/UnitWeight/RealNameWeight.php @@ -3,7 +3,7 @@ namespace AccountWeight\UnitWeight; -use library\interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; +use library\Interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; class RealNameWeight implements WechatAccountWeightResultSetInterface { diff --git a/Server/extend/AccountWeight/UnitWeight/RestrictWeight.php b/Server/extend/AccountWeight/UnitWeight/RestrictWeight.php index 59e8df53d..df2eb7f24 100644 --- a/Server/extend/AccountWeight/UnitWeight/RestrictWeight.php +++ b/Server/extend/AccountWeight/UnitWeight/RestrictWeight.php @@ -3,7 +3,7 @@ namespace AccountWeight\UnitWeight; use app\common\model\WechatRestricts as WechatRestrictsModel; -use library\interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; +use library\Interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; class RestrictWeight implements WechatAccountWeightResultSetInterface { diff --git a/Server/extend/AccountWeight/WechatAccountWeightAssessment.php b/Server/extend/AccountWeight/WechatAccountWeightAssessment.php index b4528f2ae..0d53b1ff0 100644 --- a/Server/extend/AccountWeight/WechatAccountWeightAssessment.php +++ b/Server/extend/AccountWeight/WechatAccountWeightAssessment.php @@ -4,8 +4,8 @@ namespace AccountWeight; use AccountWeight\Exceptions\WechatAccountWeightAssessmentException as WeightAssessmentException; use library\ClassTable; -use library\interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; -use library\interfaces\WechatAccountWeightAssessment as WechatAccountWeightAssessmentInterface; +use library\Interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; +use library\Interfaces\WechatAccountWeightAssessment as WechatAccountWeightAssessmentInterface; use AccountWeight\UnitWeight; use app\common\service\ClassTableService; diff --git a/Server/extend/AccountWeight/WechatFriendAddLimitAssessment.php b/Server/extend/AccountWeight/WechatFriendAddLimitAssessment.php index 02fe014b0..49bd8876c 100644 --- a/Server/extend/AccountWeight/WechatFriendAddLimitAssessment.php +++ b/Server/extend/AccountWeight/WechatFriendAddLimitAssessment.php @@ -2,8 +2,8 @@ namespace AccountWeight; -use library\interfaces\WechatAccountWeightAssessment as WechatAccountWeightAssessmentInterface; -use library\interfaces\WechatFriendAddLimitAssessment as WechatFriendAddLimitAssessmentInterface; +use library\Interfaces\WechatAccountWeightAssessment as WechatAccountWeightAssessmentInterface; +use library\Interfaces\WechatFriendAddLimitAssessment as WechatFriendAddLimitAssessmentInterface; class WechatFriendAddLimitAssessment implements WechatFriendAddLimitAssessmentInterface { diff --git a/Server/extend/library/ClassTable.php b/Server/extend/library/ClassTable.php index 785556a4e..939eeb4a0 100644 --- a/Server/extend/library/ClassTable.php +++ b/Server/extend/library/ClassTable.php @@ -2,7 +2,7 @@ namespace library; -use library\interfaces\CallMap as CallMapInterface; +use library\Interfaces\CallMap as CallMapInterface; class ClassTable implements CallMapInterface { diff --git a/Server/extend/library/Interfaces/CallMap.php b/Server/extend/library/Interfaces/CallMap.php index 71d34bad9..f58d5bc15 100644 --- a/Server/extend/library/Interfaces/CallMap.php +++ b/Server/extend/library/Interfaces/CallMap.php @@ -1,6 +1,6 @@