DomainAuthController.php 392 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Http\Controllers\Api;
  3. use App\Wen\Utils\Utils;
  4. use Doctrine\Common\Cache\Cache;
  5. use Illuminate\Http\Request;
  6. class DomainAuthController extends BaseController{
  7. public function app_center_login(Request $request){
  8. if($request->isMethod('get')){
  9. $random = $request->random;
  10. if($random){
  11. }
  12. }else{
  13. }
  14. }
  15. }