TestController.php 318 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: wangzhiqiang
  5. * Date: 2019/4/30
  6. * Time: 14:27
  7. */
  8. namespace App\Http\Controllers\V1;
  9. use App\Http\Controllers\Controller;
  10. class TestController extends Controller
  11. {
  12. public function __construct()
  13. {
  14. }
  15. public function index()
  16. {
  17. return 212;
  18. }
  19. }