add service dir
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
|
||||
namespace App\Http\Controllers\Base;
|
||||
|
||||
use App\Service\ReplyService;
|
||||
use App\Service\Api\ReplyService;
|
||||
use Illuminate\Routing\Controller;
|
||||
|
||||
abstract class BaseController extends Controller
|
||||
|
||||
@ -7,9 +7,9 @@ use App\Const\VrCode;
|
||||
use App\Exceptions\AppException;
|
||||
use App\Http\Controllers\Base\CustomerBaseController;
|
||||
use App\Models\Api\Customer\CustomerUserModel;
|
||||
use App\Service\AuthService;
|
||||
use App\Service\ImService;
|
||||
use App\Service\VrCodeService;
|
||||
use App\Service\Api\AuthService;
|
||||
use App\Service\Api\ImService;
|
||||
use App\Service\Api\VrCodeService;
|
||||
use App\Tools\Tools;
|
||||
|
||||
class CustomerUserController extends CustomerBaseController
|
||||
|
||||
@ -6,7 +6,7 @@ namespace App\Http\Controllers\Follow;
|
||||
use App\Exceptions\ModelException;
|
||||
use App\Http\Controllers\Base\BaseController;
|
||||
use App\Models\Api\Follow\FollowModel;
|
||||
use App\Service\AuthService;
|
||||
use App\Service\Api\AuthService;
|
||||
use Psr\Container\ContainerExceptionInterface;
|
||||
use Psr\Container\NotFoundExceptionInterface;
|
||||
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
namespace App\Http\Controllers\Post;
|
||||
|
||||
use App\Http\Controllers\Base\BaseController;
|
||||
use App\Service\AuthService;
|
||||
use App\Service\Api\AuthService;
|
||||
|
||||
class PostController extends BaseController
|
||||
{
|
||||
|
||||
@ -5,8 +5,8 @@ use App\Const\VrCode;
|
||||
use App\Exceptions\AppException;
|
||||
use App\Http\Controllers\Base\CustomerBaseController;
|
||||
use App\Models\Api\Customer\CustomerUserModel;
|
||||
use App\Service\AuthService;
|
||||
use App\Service\VrCodeService;
|
||||
use App\Service\Api\AuthService;
|
||||
use App\Service\Api\VrCodeService;
|
||||
use Illuminate\Support\Facades\Validator;
|
||||
use Psr\Container\ContainerExceptionInterface;
|
||||
use Psr\Container\NotFoundExceptionInterface;
|
||||
|
||||
@ -4,7 +4,7 @@ namespace App\Http\Middleware;
|
||||
|
||||
use App\Const\Responses;
|
||||
use App\Models\Api\Customer\CustomerUserModel;
|
||||
use App\Service\AuthService;
|
||||
use App\Service\Api\AuthService;
|
||||
use Closure;
|
||||
use Illuminate\Http\Request;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
|
||||
Reference in New Issue
Block a user