IndexController.class.php
309 Bytes
<?php
/**
* Created by PhpStorm.
* User: luoys
* Date: 2019/2/13
* Time: 17:29
*/
namespace Cli\Controller\Index;
use Cli\Controller\AbstractController;
class IndexController extends AbstractController
{
public function index()
{
echo "Swoole work进程已成功启动。\n";
}
}