DevController.php 396 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace App\Module\Dev\Controllers;
  3. use App\Http\Controllers\Controller;
  4. use Illuminate\Http\Request;
  5. class DevController extends Controller
  6. {
  7. /**
  8. * 构造函数
  9. */
  10. public function __construct()
  11. {
  12. parent::__construct();
  13. }
  14. /**
  15. * 首页
  16. */
  17. public function index()
  18. {
  19. return $this->success('Dev模块运行正常');
  20. }
  21. }