BaseController.php 233 B

123456789101112131415
  1. <?php
  2. namespace app\common\controller;
  3. use think\App;
  4. use think\Controller;
  5. class BaseController extends Controller
  6. {
  7. public function __construct(App $app = null)
  8. {
  9. parent::__construct($app);
  10. }
  11. }