You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
265 B

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Controller;
  4. use App\Request\StoreApplyEntryRequest;
  5. class StoreController extends BaseController
  6. {
  7. /**
  8. * 申请入驻
  9. */
  10. public function applyEntry(StoreApplyEntryRequest $request)
  11. {
  12. }
  13. }