Sign in

colleague / study-project · Files

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • study-project
  • trunk
  • Swoole
  • Cli
  • Controller
  • Index
  • Task.class.php
  • 初步实现swoole整合
    800e411f
    luoyanshou authored
    2019-02-20 15:50:49 +0800  
    Browse Dir »
Task.class.php 325 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<?php
/**
 * Created by PhpStorm.
 * Project: study-project
 * User: luoys
 * Date: 2019/2/19
 * Time: 14:49
 */

namespace Cli\Controller\Index;

use Cli\Model\UserModel;
use Think\Log;

class Task
{
    public function index($data)
    {
        $user = new UserModel();
        print_r($user);
        return true;
    }
}