IndexAction.class.php 118 B

123456789101112131415
  1. <?php
  2. class IndexAction extends Action {
  3. public function index( ){
  4. Workerman\Worker::runAll();
  5. }
  6. }