Base.php 196 B

123456789101112131415
  1. <?php
  2. namespace app\watch\controller;
  3. use think\Controller;
  4. use think\facade\View;
  5. class Base extends Controller
  6. {
  7. public function initialize()
  8. {
  9. parent::initialize();
  10. }
  11. }