mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-27 04:57:39 +08:00
调整命名空间别名
This commit is contained in:
parent
08b764c26c
commit
341168a9e1
@ -37,6 +37,7 @@ class UploadController extends Controller
|
||||
*/
|
||||
public function uploadImImageAction()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -15,7 +15,7 @@ class VerifyController extends \Phalcon\Mvc\Controller
|
||||
use ResponseTrait;
|
||||
|
||||
/**
|
||||
* @Post("/sms/code", name="verify.sms_code")
|
||||
* @Post("/sms/code", name="home.verify.sms_code")
|
||||
*/
|
||||
public function smsCodeAction()
|
||||
{
|
||||
@ -27,7 +27,7 @@ class VerifyController extends \Phalcon\Mvc\Controller
|
||||
}
|
||||
|
||||
/**
|
||||
* @Post("/email/code", name="verify.email_code")
|
||||
* @Post("/email/code", name="home.verify.email_code")
|
||||
*/
|
||||
public function emailCodeAction()
|
||||
{
|
||||
|
@ -3,11 +3,11 @@
|
||||
namespace App\Services\Logic\Account;
|
||||
|
||||
use App\Repos\Account as AccountRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Account as AccountValidator;
|
||||
use App\Validators\Verify as VerifyValidator;
|
||||
|
||||
class EmailUpdate extends Service
|
||||
class EmailUpdate extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -2,9 +2,9 @@
|
||||
|
||||
namespace App\Services\Logic\Account;
|
||||
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class OAuthProvider extends Service
|
||||
class OAuthProvider extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -3,11 +3,11 @@
|
||||
namespace App\Services\Logic\Account;
|
||||
|
||||
use App\Library\Utils\Password as PasswordUtil;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Account as AccountValidator;
|
||||
use App\Validators\Verify as VerifyValidator;
|
||||
|
||||
class PasswordReset extends Service
|
||||
class PasswordReset extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -4,10 +4,10 @@ namespace App\Services\Logic\Account;
|
||||
|
||||
use App\Library\Utils\Password as PasswordUtil;
|
||||
use App\Repos\Account as AccountRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Account as AccountValidator;
|
||||
|
||||
class PasswordUpdate extends Service
|
||||
class PasswordUpdate extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -3,11 +3,11 @@
|
||||
namespace App\Services\Logic\Account;
|
||||
|
||||
use App\Repos\Account as AccountRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Account as AccountValidator;
|
||||
use App\Validators\Verify as VerifyValidator;
|
||||
|
||||
class PhoneUpdate extends Service
|
||||
class PhoneUpdate extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -7,11 +7,11 @@ use App\Library\Validators\Common as CommonValidator;
|
||||
use App\Models\Account as AccountModel;
|
||||
use App\Models\ImUser as ImUserModel;
|
||||
use App\Models\User as UserModel;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Account as AccountValidator;
|
||||
use App\Validators\Verify as VerifyValidator;
|
||||
|
||||
class Register extends Service
|
||||
class Register extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -10,9 +10,9 @@ use App\Services\ChapterVod as ChapterVodService;
|
||||
use App\Services\Live as LiveService;
|
||||
use App\Services\Logic\ChapterTrait;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class BasicInfo extends Service
|
||||
class BasicInfo extends LogicService
|
||||
{
|
||||
|
||||
use CourseTrait;
|
||||
|
@ -14,9 +14,9 @@ use App\Repos\ImGroup as ImGroupRepo;
|
||||
use App\Repos\ImGroupUser as ImGroupUserRepo;
|
||||
use App\Services\Logic\ChapterTrait;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class ChapterInfo extends Service
|
||||
class ChapterInfo extends LogicService
|
||||
{
|
||||
|
||||
/**
|
||||
|
@ -7,10 +7,10 @@ use App\Models\ChapterLike as ChapterLikeModel;
|
||||
use App\Models\User as UserModel;
|
||||
use App\Repos\ChapterLike as ChapterLikeRepo;
|
||||
use App\Services\Logic\ChapterTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\UserLimit as UserLimitValidator;
|
||||
|
||||
class ChapterLike extends Service
|
||||
class ChapterLike extends LogicService
|
||||
{
|
||||
|
||||
use ChapterTrait;
|
||||
|
@ -5,9 +5,9 @@ namespace App\Services\Logic\Chapter;
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Services\Logic\ChapterTrait;
|
||||
use App\Services\Logic\Consult\ConsultList as ConsultListHandler;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class ConsultList extends Service
|
||||
class ConsultList extends LogicService
|
||||
{
|
||||
|
||||
use ChapterTrait;
|
||||
|
@ -5,9 +5,9 @@ namespace App\Services\Logic\Chapter;
|
||||
use App\Builders\DanmuList as DanmuListBuilder;
|
||||
use App\Repos\Danmu as DanmuRepo;
|
||||
use App\Services\Logic\ChapterTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class DanmuList extends Service
|
||||
class DanmuList extends LogicService
|
||||
{
|
||||
|
||||
use ChapterTrait;
|
||||
|
@ -5,11 +5,11 @@ namespace App\Services\Logic\Chapter;
|
||||
use App\Models\Course as CourseModel;
|
||||
use App\Models\Learning as LearningModel;
|
||||
use App\Services\Logic\ChapterTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Services\Sync\Learning as LearningSyncService;
|
||||
use App\Validators\Learning as LearningValidator;
|
||||
|
||||
class Learning extends Service
|
||||
class Learning extends LogicService
|
||||
{
|
||||
|
||||
use ChapterTrait;
|
||||
|
@ -5,9 +5,9 @@ namespace App\Services\Logic\Chapter;
|
||||
use App\Builders\ResourceList as ResourceListBuilder;
|
||||
use App\Repos\Resource as ResourceRepo;
|
||||
use App\Services\Logic\ChapterTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class ResourceList extends Service
|
||||
class ResourceList extends LogicService
|
||||
{
|
||||
|
||||
use ChapterTrait;
|
||||
|
@ -9,11 +9,11 @@ use App\Models\User as UserModel;
|
||||
use App\Services\Logic\ChapterTrait;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\Notice\DingTalk\ConsultCreate as ConsultCreateNotice;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Consult as ConsultValidator;
|
||||
use App\Validators\UserLimit as UserLimitValidator;
|
||||
|
||||
class ConsultCreate extends Service
|
||||
class ConsultCreate extends LogicService
|
||||
{
|
||||
|
||||
use CourseTrait;
|
||||
|
@ -7,10 +7,10 @@ use App\Models\Course as CourseModel;
|
||||
use App\Services\Logic\ChapterTrait;
|
||||
use App\Services\Logic\ConsultTrait;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Consult as ConsultValidator;
|
||||
|
||||
class ConsultDelete extends Service
|
||||
class ConsultDelete extends LogicService
|
||||
{
|
||||
|
||||
use CourseTrait;
|
||||
|
@ -7,9 +7,9 @@ use App\Repos\Chapter as ChapterRepo;
|
||||
use App\Repos\Course as CourseRepo;
|
||||
use App\Repos\User as UserRepo;
|
||||
use App\Services\Logic\ConsultTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class ConsultInfo extends Service
|
||||
class ConsultInfo extends LogicService
|
||||
{
|
||||
|
||||
use ConsultTrait;
|
||||
|
@ -6,11 +6,11 @@ use App\Models\Consult as ConsultModel;
|
||||
use App\Models\ConsultLike as ConsultLikeModel;
|
||||
use App\Models\User as UserModel;
|
||||
use App\Services\Logic\ConsultTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Consult as ConsultValidator;
|
||||
use App\Validators\UserLimit as UserLimitValidator;
|
||||
|
||||
class ConsultLike extends Service
|
||||
class ConsultLike extends LogicService
|
||||
{
|
||||
|
||||
use ConsultTrait;
|
||||
|
@ -4,9 +4,9 @@ namespace App\Services\Logic\Consult;
|
||||
|
||||
use App\Builders\ConsultList as ConsultListBuilder;
|
||||
use App\Repos\Consult as ConsultRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class ConsultList extends Service
|
||||
class ConsultList extends LogicService
|
||||
{
|
||||
|
||||
public function paginate($params, $sort, $page, $limit)
|
||||
|
@ -3,10 +3,10 @@
|
||||
namespace App\Services\Logic\Consult;
|
||||
|
||||
use App\Services\Logic\ConsultTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Consult as ConsultValidator;
|
||||
|
||||
class ConsultUpdate extends Service
|
||||
class ConsultUpdate extends LogicService
|
||||
{
|
||||
|
||||
use ConsultTrait;
|
||||
|
@ -6,9 +6,9 @@ use App\Caches\CourseTeacherList as CourseTeacherListCache;
|
||||
use App\Models\Course as CourseModel;
|
||||
use App\Repos\Course as CourseRepo;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class BasicInfo extends Service
|
||||
class BasicInfo extends LogicService
|
||||
{
|
||||
|
||||
use CourseTrait;
|
||||
|
@ -4,9 +4,9 @@ namespace App\Services\Logic\Course;
|
||||
|
||||
use App\Caches\CategoryTreeList as CategoryTreeListCache;
|
||||
use App\Models\Category as CategoryModel;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class CategoryList extends Service
|
||||
class CategoryList extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -7,9 +7,9 @@ use App\Models\Course as CourseModel;
|
||||
use App\Models\User as UserModel;
|
||||
use App\Repos\Course as CourseRepo;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class ChapterList extends Service
|
||||
class ChapterList extends LogicService
|
||||
{
|
||||
|
||||
use CourseTrait;
|
||||
|
@ -6,9 +6,9 @@ use App\Builders\ConsultList as ConsultListBuilder;
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Repos\Consult as ConsultRepo;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class ConsultList extends Service
|
||||
class ConsultList extends LogicService
|
||||
{
|
||||
|
||||
use CourseTrait;
|
||||
|
@ -7,10 +7,10 @@ use App\Models\CourseFavorite as CourseFavoriteModel;
|
||||
use App\Models\User as UserModel;
|
||||
use App\Repos\CourseFavorite as CourseFavoriteRepo;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\UserLimit as UserLimitValidator;
|
||||
|
||||
class CourseFavorite extends Service
|
||||
class CourseFavorite extends LogicService
|
||||
{
|
||||
|
||||
use CourseTrait;
|
||||
|
@ -6,9 +6,9 @@ use App\Models\Course as CourseModel;
|
||||
use App\Models\User as UserModel;
|
||||
use App\Repos\CourseFavorite as CourseFavoriteRepo;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class CourseInfo extends Service
|
||||
class CourseInfo extends LogicService
|
||||
{
|
||||
|
||||
use CourseTrait;
|
||||
|
@ -5,10 +5,10 @@ namespace App\Services\Logic\Course;
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Repos\Course as CourseRepo;
|
||||
use App\Services\Category as CategoryService;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\CourseQuery as CourseQueryValidator;
|
||||
|
||||
class CourseList extends Service
|
||||
class CourseList extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -5,9 +5,9 @@ namespace App\Services\Logic\Course;
|
||||
use App\Caches\CoursePackageList as CoursePackageListCache;
|
||||
use App\Caches\PackageCourseList as PackageCourseListCache;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class PackageList extends Service
|
||||
class PackageList extends LogicService
|
||||
{
|
||||
|
||||
use CourseTrait;
|
||||
|
@ -4,9 +4,9 @@ namespace App\Services\Logic\Course;
|
||||
|
||||
use App\Caches\CourseRecommendedList as CourseRecommendedListCache;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class RecommendedList extends Service
|
||||
class RecommendedList extends LogicService
|
||||
{
|
||||
|
||||
use CourseTrait;
|
||||
|
@ -4,9 +4,9 @@ namespace App\Services\Logic\Course;
|
||||
|
||||
use App\Caches\CourseRelatedList as CourseRelatedListCache;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class RelatedList extends Service
|
||||
class RelatedList extends LogicService
|
||||
{
|
||||
|
||||
use CourseTrait;
|
||||
|
@ -6,9 +6,9 @@ use App\Builders\ReviewList as ReviewListBuilder;
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Repos\Review as ReviewRepo;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class ReviewList extends Service
|
||||
class ReviewList extends LogicService
|
||||
{
|
||||
|
||||
use CourseTrait;
|
||||
|
@ -4,9 +4,9 @@ namespace App\Services\Logic\Course;
|
||||
|
||||
use App\Caches\CourseTeacherList as CourseTeacherListCache;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class TeacherList extends Service
|
||||
class TeacherList extends LogicService
|
||||
{
|
||||
|
||||
use CourseTrait;
|
||||
|
@ -4,9 +4,9 @@ namespace App\Services\Logic\Course;
|
||||
|
||||
use App\Caches\CourseTopicList as CourseTopicListCache;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class TopicList extends Service
|
||||
class TopicList extends LogicService
|
||||
{
|
||||
|
||||
use CourseTrait;
|
||||
|
@ -5,11 +5,11 @@ namespace App\Services\Logic\Danmu;
|
||||
use App\Models\Danmu as DanmuModel;
|
||||
use App\Models\User as UserModel;
|
||||
use App\Services\Logic\ChapterTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Danmu as DanmuValidator;
|
||||
use App\Validators\UserLimit as UserLimitValidator;
|
||||
|
||||
class DanmuCreate extends Service
|
||||
class DanmuCreate extends LogicService
|
||||
{
|
||||
|
||||
use ChapterTrait;
|
||||
|
@ -5,9 +5,9 @@ namespace App\Services\Logic\Danmu;
|
||||
use App\Models\Danmu as DanmuModel;
|
||||
use App\Repos\User as UserRepo;
|
||||
use App\Services\Logic\DanmuTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class DanmuInfo extends Service
|
||||
class DanmuInfo extends LogicService
|
||||
{
|
||||
|
||||
use DanmuTrait;
|
||||
|
@ -3,9 +3,9 @@
|
||||
namespace App\Services\Logic\FlashSale;
|
||||
|
||||
use App\Services\Logic\FlashSaleTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class Queue extends Service
|
||||
class Queue extends LogicService
|
||||
{
|
||||
|
||||
use FlashSaleTrait;
|
||||
|
@ -4,9 +4,9 @@ namespace App\Services\Logic\FlashSale;
|
||||
|
||||
use App\Models\FlashSale as FlashSaleModel;
|
||||
use App\Repos\FlashSale as FlashSaleRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class SaleList extends Service
|
||||
class SaleList extends LogicService
|
||||
{
|
||||
|
||||
/**
|
||||
|
@ -2,9 +2,9 @@
|
||||
|
||||
namespace App\Services\Logic\FlashSale;
|
||||
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class UserOrderCache extends Service
|
||||
class UserOrderCache extends LogicService
|
||||
{
|
||||
|
||||
public function get($userId, $saleId)
|
||||
|
@ -4,9 +4,9 @@ namespace App\Services\Logic\Help;
|
||||
|
||||
use App\Models\Help as HelpModel;
|
||||
use App\Services\Logic\HelpTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class HelpInfo extends Service
|
||||
class HelpInfo extends LogicService
|
||||
{
|
||||
|
||||
use HelpTrait;
|
||||
|
@ -3,9 +3,9 @@
|
||||
namespace App\Services\Logic\Help;
|
||||
|
||||
use App\Caches\HelpList as HelpListCache;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class HelpList extends Service
|
||||
class HelpList extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -4,7 +4,6 @@ namespace App\Services\Logic\Im;
|
||||
|
||||
use App\Repos\User as UserRepo;
|
||||
use App\Services\Logic\ImGroupTrait;
|
||||
use App\Services\Logic\Service;
|
||||
|
||||
|
||||
class GroupInfo extends Service
|
||||
|
@ -5,7 +5,6 @@ namespace App\Services\Logic\Im;
|
||||
use App\Builders\ImGroupList as ImGroupListBuilder;
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Repos\ImGroup as ImGroupRepo;
|
||||
use App\Services\Logic\Service;
|
||||
|
||||
class GroupList extends Service
|
||||
{
|
||||
|
@ -6,7 +6,6 @@ use App\Builders\ImGroupUserList as ImGroupUserListBuilder;
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Repos\ImGroupUser as ImGroupUserRepo;
|
||||
use App\Services\Logic\ImGroupTrait;
|
||||
use App\Services\Logic\Service;
|
||||
|
||||
class GroupUserList extends Service
|
||||
{
|
||||
|
@ -3,11 +3,11 @@
|
||||
namespace App\Services\Logic\Live;
|
||||
|
||||
use App\Services\Logic\ChapterTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Live as LiveValidator;
|
||||
use GatewayClient\Gateway;
|
||||
|
||||
class LiveChapter extends Service
|
||||
class LiveChapter extends LogicService
|
||||
{
|
||||
|
||||
use ChapterTrait;
|
||||
|
@ -6,9 +6,9 @@ namespace App\Services\Logic\Live;
|
||||
use App\Builders\LiveList as LiveListBuilder;
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Repos\ChapterLive as ChapterLiveRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class LiveList extends Service
|
||||
class LiveList extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -4,10 +4,10 @@ namespace App\Services\Logic\Order;
|
||||
|
||||
use App\Models\Order as OrderModel;
|
||||
use App\Services\Logic\OrderTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Order as OrderValidator;
|
||||
|
||||
class OrderCancel extends Service
|
||||
class OrderCancel extends LogicService
|
||||
{
|
||||
|
||||
use OrderTrait;
|
||||
|
@ -8,10 +8,10 @@ use App\Models\Package as PackageModel;
|
||||
use App\Models\Reward as RewardModel;
|
||||
use App\Models\Vip as VipModel;
|
||||
use App\Repos\Package as PackageRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Order as OrderValidator;
|
||||
|
||||
class OrderConfirm extends Service
|
||||
class OrderConfirm extends LogicService
|
||||
{
|
||||
|
||||
public function handle($itemId, $itemType)
|
||||
|
@ -10,12 +10,12 @@ use App\Models\User as UserModel;
|
||||
use App\Models\Vip as VipModel;
|
||||
use App\Repos\Order as OrderRepo;
|
||||
use App\Repos\Package as PackageRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Traits\Client as ClientTrait;
|
||||
use App\Validators\Order as OrderValidator;
|
||||
use App\Validators\UserLimit as UserLimitValidator;
|
||||
|
||||
class OrderCreate extends Service
|
||||
class OrderCreate extends LogicService
|
||||
{
|
||||
|
||||
/**
|
||||
|
@ -5,10 +5,10 @@ namespace App\Services\Logic\Order;
|
||||
use App\Models\Course as CourseModel;
|
||||
use App\Models\Order as OrderModel;
|
||||
use App\Repos\Order as OrderRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Order as OrderValidator;
|
||||
|
||||
class OrderInfo extends Service
|
||||
class OrderInfo extends LogicService
|
||||
{
|
||||
|
||||
public function handle($sn)
|
||||
|
@ -2,9 +2,9 @@
|
||||
|
||||
namespace App\Services\Logic\Order;
|
||||
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class PayProvider extends Service
|
||||
class PayProvider extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -4,9 +4,9 @@ namespace App\Services\Logic\Package;
|
||||
|
||||
use App\Caches\PackageCourseList as PackageCourseListCache;
|
||||
use App\Services\Logic\PackageTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class CourseList extends Service
|
||||
class CourseList extends LogicService
|
||||
{
|
||||
|
||||
use PackageTrait;
|
||||
|
@ -4,9 +4,9 @@ namespace App\Services\Logic\Package;
|
||||
|
||||
use App\Models\Package as PackageModel;
|
||||
use App\Services\Logic\PackageTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class PackageInfo extends Service
|
||||
class PackageInfo extends LogicService
|
||||
{
|
||||
|
||||
use PackageTrait;
|
||||
|
@ -4,9 +4,9 @@ namespace App\Services\Logic\Page;
|
||||
|
||||
use App\Models\Page as PageModel;
|
||||
use App\Services\Logic\PageTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class PageInfo extends Service
|
||||
class PageInfo extends LogicService
|
||||
{
|
||||
|
||||
use PageTrait;
|
||||
|
@ -5,9 +5,9 @@ namespace App\Services\Logic\Point;
|
||||
use App\Models\PointGift;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\PointGiftTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class GiftInfo extends Service
|
||||
class GiftInfo extends LogicService
|
||||
{
|
||||
|
||||
use CourseTrait;
|
||||
|
@ -4,9 +4,9 @@ namespace App\Services\Logic\Point;
|
||||
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Repos\PointGift as PointGiftRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class GiftList extends Service
|
||||
class GiftList extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -3,9 +3,9 @@
|
||||
namespace App\Services\Logic\Point;
|
||||
|
||||
use App\Caches\PointHotGiftList;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class HotGiftList extends Service
|
||||
class HotGiftList extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -14,9 +14,9 @@ use App\Repos\Chapter as ChapterRepo;
|
||||
use App\Repos\Course as CourseRepo;
|
||||
use App\Repos\PointHistory as PointHistoryRepo;
|
||||
use App\Repos\User as UserRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class PointHistory extends Service
|
||||
class PointHistory extends LogicService
|
||||
{
|
||||
|
||||
public function handleOrderConsume(OrderModel $order)
|
||||
|
@ -10,10 +10,10 @@ use App\Models\User as UserModel;
|
||||
use App\Repos\User as UserRepo;
|
||||
use App\Services\Logic\Point\PointHistory as PointHistoryService;
|
||||
use App\Services\Logic\PointGiftTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\PointRedeem as PointRedeemValidator;
|
||||
|
||||
class PointRedeem extends Service
|
||||
class PointRedeem extends LogicService
|
||||
{
|
||||
|
||||
use PointGiftTrait;
|
||||
|
@ -6,10 +6,10 @@ use App\Models\Refund as RefundModel;
|
||||
use App\Models\Task as TaskModel;
|
||||
use App\Repos\Refund as RefundRepo;
|
||||
use App\Services\Logic\RefundTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Refund as RefundValidator;
|
||||
|
||||
class RefundCancel extends Service
|
||||
class RefundCancel extends LogicService
|
||||
{
|
||||
|
||||
use RefundTrait;
|
||||
|
@ -3,10 +3,10 @@
|
||||
namespace App\Services\Logic\Refund;
|
||||
|
||||
use App\Services\Logic\OrderTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Services\Refund;
|
||||
|
||||
class RefundConfirm extends Service
|
||||
class RefundConfirm extends LogicService
|
||||
{
|
||||
|
||||
use OrderTrait;
|
||||
|
@ -6,12 +6,12 @@ use App\Models\Refund as RefundModel;
|
||||
use App\Models\Task as TaskModel;
|
||||
use App\Repos\Order as OrderRepo;
|
||||
use App\Services\Logic\OrderTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Services\Refund as RefundService;
|
||||
use App\Validators\Order as OrderValidator;
|
||||
use App\Validators\Refund as RefundValidator;
|
||||
|
||||
class RefundCreate extends Service
|
||||
class RefundCreate extends LogicService
|
||||
{
|
||||
|
||||
use OrderTrait;
|
||||
|
@ -6,9 +6,9 @@ use App\Models\Refund as RefundModel;
|
||||
use App\Repos\Order as OrderRepo;
|
||||
use App\Repos\Refund as RefundRepo;
|
||||
use App\Services\Logic\RefundTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class RefundInfo extends Service
|
||||
class RefundInfo extends LogicService
|
||||
{
|
||||
|
||||
use RefundTrait;
|
||||
|
@ -8,11 +8,11 @@ use App\Models\Review as ReviewModel;
|
||||
use App\Services\CourseStat as CourseStatService;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\ReviewTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\CourseUser as CourseUserValidator;
|
||||
use App\Validators\Review as ReviewValidator;
|
||||
|
||||
class ReviewCreate extends Service
|
||||
class ReviewCreate extends LogicService
|
||||
{
|
||||
|
||||
use CourseTrait;
|
||||
|
@ -6,10 +6,10 @@ use App\Models\Course as CourseModel;
|
||||
use App\Services\CourseStat as CourseStatService;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\ReviewTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Review as ReviewValidator;
|
||||
|
||||
class ReviewDelete extends Service
|
||||
class ReviewDelete extends LogicService
|
||||
{
|
||||
|
||||
use CourseTrait;
|
||||
|
@ -6,9 +6,9 @@ use App\Models\Review as ReviewModel;
|
||||
use App\Repos\Course as CourseRepo;
|
||||
use App\Repos\User as UserRepo;
|
||||
use App\Services\Logic\ReviewTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class ReviewInfo extends Service
|
||||
class ReviewInfo extends LogicService
|
||||
{
|
||||
|
||||
use ReviewTrait;
|
||||
|
@ -6,11 +6,11 @@ use App\Models\Review as ReviewModel;
|
||||
use App\Models\ReviewLike as ReviewLikeModel;
|
||||
use App\Models\User as UserModel;
|
||||
use App\Services\Logic\ReviewTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Review as ReviewValidator;
|
||||
use App\Validators\UserLimit as UserLimitValidator;
|
||||
|
||||
class ReviewLike extends Service
|
||||
class ReviewLike extends LogicService
|
||||
{
|
||||
|
||||
use ReviewTrait;
|
||||
|
@ -6,10 +6,10 @@ use App\Models\Course as CourseModel;
|
||||
use App\Services\CourseStat as CourseStatService;
|
||||
use App\Services\Logic\CourseTrait;
|
||||
use App\Services\Logic\ReviewTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Review as ReviewValidator;
|
||||
|
||||
class ReviewUpdate extends Service
|
||||
class ReviewUpdate extends LogicService
|
||||
{
|
||||
|
||||
use CourseTrait;
|
||||
|
@ -3,9 +3,9 @@
|
||||
namespace App\Services\Logic\Reward;
|
||||
|
||||
use App\Repos\Reward as RewardRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class OptionList extends Service
|
||||
class OptionList extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -2,9 +2,9 @@
|
||||
|
||||
namespace App\Services\Logic\Search;
|
||||
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
abstract class Handler extends Service
|
||||
abstract class Handler extends LogicService
|
||||
{
|
||||
|
||||
abstract function search();
|
||||
|
@ -8,11 +8,11 @@ use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Models\Consult as ConsultModel;
|
||||
use App\Models\Course as CourseModel;
|
||||
use App\Models\CourseUser as CourseUserModel;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use Phalcon\Mvc\Model\Resultset;
|
||||
use Phalcon\Mvc\Model\ResultsetInterface;
|
||||
|
||||
class ConsultList extends Service
|
||||
class ConsultList extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -6,10 +6,10 @@ use App\Builders\CourseUserList as CourseUserListBuilder;
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Models\CourseUser as CourseUserModel;
|
||||
use App\Repos\CourseUser as CourseUserRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Services\Logic\UserTrait;
|
||||
|
||||
class CourseList extends Service
|
||||
class CourseList extends LogicService
|
||||
{
|
||||
|
||||
use UserTrait;
|
||||
|
@ -4,9 +4,9 @@ namespace App\Services\Logic\Teacher\Console;
|
||||
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Repos\TeacherLive as TeacherLiveRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class LiveList extends Service
|
||||
class LiveList extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -5,9 +5,9 @@ namespace App\Services\Logic\Teacher\Console;
|
||||
use App\Models\ChapterLive as ChapterLiveModel;
|
||||
use App\Services\Live as LiveService;
|
||||
use App\Services\Logic\ChapterTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class LivePushUrl extends Service
|
||||
class LivePushUrl extends LogicService
|
||||
{
|
||||
|
||||
use ChapterTrait;
|
||||
|
@ -6,10 +6,10 @@ use App\Builders\CourseUserList as CourseUserListBuilder;
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Models\CourseUser as CourseUserModel;
|
||||
use App\Repos\CourseUser as CourseUserRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Services\Logic\UserTrait;
|
||||
|
||||
class CourseList extends Service
|
||||
class CourseList extends LogicService
|
||||
{
|
||||
|
||||
use UserTrait;
|
||||
|
@ -2,10 +2,10 @@
|
||||
|
||||
namespace App\Services\Logic\Teacher;
|
||||
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Services\Logic\User\UserInfo as UserInfoService;
|
||||
|
||||
class TeacherInfo extends Service
|
||||
class TeacherInfo extends LogicService
|
||||
{
|
||||
|
||||
public function handle($id)
|
||||
|
@ -5,9 +5,9 @@ namespace App\Services\Logic\Teacher;
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Models\User as UserModel;
|
||||
use App\Repos\User as UserRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class TeacherList extends Service
|
||||
class TeacherList extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -5,10 +5,10 @@ namespace App\Services\Logic\Topic;
|
||||
use App\Builders\CourseTopicList as CourseTopicListBuilder;
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Repos\CourseTopic as CourseTopicRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Services\Logic\TopicTrait;
|
||||
|
||||
class CourseList extends Service
|
||||
class CourseList extends LogicService
|
||||
{
|
||||
|
||||
use TopicTrait;
|
||||
|
@ -3,10 +3,10 @@
|
||||
namespace App\Services\Logic\Topic;
|
||||
|
||||
use App\Models\Topic as TopicModel;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Services\Logic\TopicTrait;
|
||||
|
||||
class TopicInfo extends Service
|
||||
class TopicInfo extends LogicService
|
||||
{
|
||||
|
||||
use TopicTrait;
|
||||
|
@ -4,10 +4,10 @@ namespace App\Services\Logic\Trade;
|
||||
|
||||
use App\Models\Trade as TradeModel;
|
||||
use App\Services\Logic\OrderTrait;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\Trade as TradeValidator;
|
||||
|
||||
class TradeCreate extends Service
|
||||
class TradeCreate extends LogicService
|
||||
{
|
||||
|
||||
use OrderTrait;
|
||||
|
@ -3,10 +3,10 @@
|
||||
namespace App\Services\Logic\Trade;
|
||||
|
||||
use App\Models\Trade as TradeModel;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Services\Logic\TradeTrait;
|
||||
|
||||
class TradeInfo extends Service
|
||||
class TradeInfo extends LogicService
|
||||
{
|
||||
|
||||
use TradeTrait;
|
||||
|
@ -4,9 +4,9 @@ namespace App\Services\Logic\User\Console;
|
||||
|
||||
use App\Models\User as UserModel;
|
||||
use App\Repos\Account as AccountRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class AccountInfo extends Service
|
||||
class AccountInfo extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -3,9 +3,9 @@
|
||||
namespace App\Services\Logic\User\Console;
|
||||
|
||||
use App\Repos\User as UserRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class BalanceInfo extends Service
|
||||
class BalanceInfo extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -2,10 +2,9 @@
|
||||
|
||||
namespace App\Services\Logic\User\Console;
|
||||
|
||||
use App\Services\Logic\Service;
|
||||
use App\Validators\Connect as ConnectValidator;
|
||||
|
||||
class ConnectDelete extends Service
|
||||
class ConnectDelete extends LogicService
|
||||
{
|
||||
|
||||
public function handle($id)
|
||||
|
@ -3,9 +3,9 @@
|
||||
namespace App\Services\Logic\User\Console;
|
||||
|
||||
use App\Repos\Connect as ConnectRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class ConnectList extends Service
|
||||
class ConnectList extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -5,9 +5,8 @@ namespace App\Services\Logic\User\Console;
|
||||
use App\Builders\ConsultList as ConsultListBuilder;
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Repos\Consult as ConsultRepo;
|
||||
use App\Services\Logic\Service;
|
||||
|
||||
class ConsultList extends Service
|
||||
class ConsultList extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -3,9 +3,9 @@
|
||||
namespace App\Services\Logic\User\Console;
|
||||
|
||||
use App\Repos\User as UserRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class ContactInfo extends Service
|
||||
class ContactInfo extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -3,10 +3,10 @@
|
||||
namespace App\Services\Logic\User\Console;
|
||||
|
||||
use App\Models\UserContact as UserContactModel;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\UserContact as UserContactValidator;
|
||||
|
||||
class ContactUpdate extends Service
|
||||
class ContactUpdate extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -2,10 +2,10 @@
|
||||
|
||||
namespace App\Services\Logic\User\Console;
|
||||
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Services\Logic\User\CourseList as UserCourseListService;
|
||||
|
||||
class CourseList extends Service
|
||||
class CourseList extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -2,10 +2,9 @@
|
||||
|
||||
namespace App\Services\Logic\User\Console;
|
||||
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\User\FavoriteList as UserFavoriteListService;
|
||||
|
||||
class FavoriteList extends Service
|
||||
class FavoriteList extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -2,10 +2,10 @@
|
||||
|
||||
namespace App\Services\Logic\User\Console;
|
||||
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Services\Logic\User\FriendList as UserFriendListService;
|
||||
|
||||
class FriendList extends Service
|
||||
class FriendList extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -5,10 +5,10 @@ namespace App\Services\Logic\User\Console;
|
||||
use App\Builders\ImGroupList as ImGroupListBuilder;
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Repos\ImGroup as ImGroupRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Services\Logic\User\GroupList as UserGroupListService;
|
||||
|
||||
class GroupList extends Service
|
||||
class GroupList extends LogicService
|
||||
{
|
||||
|
||||
public function handle($scope = 'joined')
|
||||
|
@ -5,11 +5,11 @@ namespace App\Services\Logic\User\Console;
|
||||
use App\Builders\OrderList as OrderListBuilder;
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Repos\Order as OrderRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Services\Logic\UserTrait;
|
||||
use App\Validators\Order as OrderValidator;
|
||||
|
||||
class OrderList extends Service
|
||||
class OrderList extends LogicService
|
||||
{
|
||||
|
||||
use UserTrait;
|
||||
|
@ -4,10 +4,10 @@ namespace App\Services\Logic\User\Console;
|
||||
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Repos\PointHistory as PointHistoryRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Services\Logic\UserTrait;
|
||||
|
||||
class PointHistory extends Service
|
||||
class PointHistory extends LogicService
|
||||
{
|
||||
|
||||
use UserTrait;
|
||||
|
@ -4,10 +4,10 @@ namespace App\Services\Logic\User\Console;
|
||||
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Repos\PointRedeem as PointRedeemRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Services\Logic\UserTrait;
|
||||
|
||||
class PointRedeemList extends Service
|
||||
class PointRedeemList extends LogicService
|
||||
{
|
||||
|
||||
use UserTrait;
|
||||
|
@ -3,9 +3,9 @@
|
||||
namespace App\Services\Logic\User\Console;
|
||||
|
||||
use App\Models\User as UserModel;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
|
||||
class ProfileInfo extends Service
|
||||
class ProfileInfo extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -3,10 +3,10 @@
|
||||
namespace App\Services\Logic\User\Console;
|
||||
|
||||
use App\Caches\User as UserCache;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Validators\User as UserValidator;
|
||||
|
||||
class ProfileUpdate extends Service
|
||||
class ProfileUpdate extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -5,11 +5,11 @@ namespace App\Services\Logic\User\Console;
|
||||
use App\Builders\RefundList as RefundListBuilder;
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Repos\Refund as RefundRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\Service as LogicService;
|
||||
use App\Services\Logic\UserTrait;
|
||||
use App\Validators\Refund as RefundValidator;
|
||||
|
||||
class RefundList extends Service
|
||||
class RefundList extends LogicService
|
||||
{
|
||||
|
||||
use UserTrait;
|
||||
|
@ -5,9 +5,8 @@ namespace App\Services\Logic\User\Console;
|
||||
use App\Builders\ReviewList as ReviewListBuilder;
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Repos\Review as ReviewRepo;
|
||||
use App\Services\Logic\Service;
|
||||
|
||||
class ReviewList extends Service
|
||||
class ReviewList extends LogicService
|
||||
{
|
||||
|
||||
public function handle()
|
||||
|
@ -5,10 +5,9 @@ namespace App\Services\Logic\User;
|
||||
use App\Builders\CourseUserList as CourseUserListBuilder;
|
||||
use App\Library\Paginator\Query as PagerQuery;
|
||||
use App\Repos\CourseUser as CourseUserRepo;
|
||||
use App\Services\Logic\Service;
|
||||
use App\Services\Logic\UserTrait;
|
||||
|
||||
class CourseList extends Service
|
||||
class CourseList extends LogicService
|
||||
{
|
||||
|
||||
use UserTrait;
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user