12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace App\Http\Controllers\Api\Base;
- use App\Http\Controllers\Controller;
- use App\Services\Base\UserService;
- use Illuminate\Support\Facades\Cache;
- use Jiannei\Response\Laravel\Support\Facades\Response;
- /**
- * 公共管理
- */
- class CommonController extends Controller
- {
- /**
- * UserController constructor.
- *
- * @param UserService $userService
- */
- public function __construct()
- {
- parent::__construct();
- }
- /**
- * 清空缓存
- * @return mixed
- * Author: Mead
- */
- public function clear()
- {
- // Cache::flush();
- return Response::noContent();
- }
- }
|