Explorar o código

walkor@workerman.net

walkor %!s(int64=11) %!d(string=hai) anos
pai
achega
3622fa9148

+ 1 - 1
applications/Demo/Bootstrap/BusinessWorker.php

@@ -3,7 +3,7 @@
  * 
  * 处理具体逻辑
  * 
- * @author walkor <workerman.net>
+ * @author walkor <walkor@workerman.net>
  * 
  */
 require_once __DIR__ . '/../Lib/Autoloader.php';

+ 1 - 1
applications/Demo/Bootstrap/Gateway.php

@@ -5,7 +5,7 @@
  * 1、监听客户端连接
  * 2、监听后端回应并转发回应给前端
  * 
- * @author walkor <workerman.net>
+ * @author walkor <walkor@workerman.net>
  * 
  */
 require_once __DIR__ . '/../Lib/Autoloader.php';

+ 1 - 1
applications/Demo/Event.php

@@ -7,7 +7,7 @@
  * 
  * websocket协议的聊天室见workerman-chat及workerman-todpole
  * 
- * @author walkor <workerman.net>
+ * @author walkor <walkor@workerman.net>
  */
 
 use \Lib\Context;

+ 1 - 1
applications/Demo/Lib/Db.php

@@ -2,7 +2,7 @@
 namespace Lib;
 /**
  * 数据库类
- * @author walkor <workerman.net>
+ * @author walkor <walkor@workerman.net>
  */
 class Db
 {

+ 1 - 1
applications/Demo/Lib/Gateway.php

@@ -3,7 +3,7 @@ namespace Lib;
 /**
  * 
  * 数据发送相关
- * @author walkor <workerman.net>
+ * @author walkor <walkor@workerman.net>
  * 
  */
 require_once __DIR__ . '/Autoloader.php';

+ 1 - 1
applications/Demo/Lib/Store.php

@@ -3,7 +3,7 @@ namespace Lib;
 /**
  * 存储类
  * 这里用memcache实现
- * @author walkor <workerman.net>
+ * @author walkor <walkor@workerman.net>
  */
 class Store
 {

+ 1 - 1
applications/Demo/Lib/StoreDriver/File.php

@@ -5,7 +5,7 @@ namespace Lib\StoreDriver;
  * 
  * 这里用php数组文件来存储数据,
  * 为了获取高性能需要用类似memcache的存储
- * @author walkor <workerman.net>
+ * @author walkor <walkor@workerman.net>
  * 
  */
 

+ 1 - 1
applications/Demo/Protocols/GatewayProtocol.php

@@ -19,7 +19,7 @@ namespace Protocols;
  * }
  * 
  * 
- * @author walkor <workerman.net>
+ * @author walkor <walkor@workerman.net>
  */
 
 class GatewayProtocol

+ 1 - 1
applications/Demo/Protocols/WebSocket.php

@@ -2,7 +2,7 @@
 namespace Protocols;
 /**
  * WebSocket 协议解包和打包
- * @author walkor <workerman.net>
+ * @author walkor <walkor@workerman.net>
  */
 
 class WebSocket

+ 1 - 1
applications/Statistics/Bootstrap/StatisticProvider.php

@@ -1,7 +1,7 @@
 <?php 
 /**
  * 
-* @author walkor <workerman.net>
+* @author walkor <walkor@workerman.net>
  */
 class StatisticProvider extends Man\Core\SocketWorker
 {

+ 1 - 1
applications/Statistics/Bootstrap/StatisticWorker.php

@@ -1,7 +1,7 @@
 <?php 
 /**
  * 
-* @author walkor <workerman.net>
+* @author walkor <walkor@workerman.net>
  */
 class StatisticWorker extends Man\Core\SocketWorker
 {

+ 1 - 1
workerman/Common/FileMonitor.php

@@ -6,7 +6,7 @@ require_once WORKERMAN_ROOT_DIR . 'Core/SocketWorker.php';
  * 当文件更新后会给每个worker进程发送平滑重启信号
  * 做到文件更新自动加载到内存
  * 
-* @author walkor <workerman.net>
+* @author walkor <walkor@workerman.net>
  */
 class FileMonitor extends Man\Core\AbstractWorker
 {

+ 1 - 1
workerman/Common/Monitor.php

@@ -8,7 +8,7 @@ require_once WORKERMAN_ROOT_DIR . 'Core/SocketWorker.php';
  * 4、定时清理log文件
  * 5、定时监控worker内存泄漏
  * 
-* @author walkor <workerman.net>
+* @author walkor <walkor@workerman.net>
  */
 class Monitor extends Man\Core\SocketWorker
 {

+ 1 - 1
workerman/Common/WebServer.php

@@ -7,7 +7,7 @@ require_once WORKERMAN_ROOT_DIR . 'Common/Protocols/Http/Http.php';
  *  WebServer
  *  HTTP协议
  *  
- * @author walkor <workerman.net>
+ * @author walkor <walkor@workerman.net>
  */
 class WebServer extends Man\Core\SocketWorker
 {

+ 1 - 1
workerman/Core/AbstractWorker.php

@@ -5,7 +5,7 @@ require_once WORKERMAN_ROOT_DIR . 'Core/Events/Select.php';
 /**
  * 抽象Worker类
  * 必须实现start方法
-* @author walkor <workerman.net>
+* @author walkor <walkor@workerman.net>
 */
 abstract class AbstractWorker
 {

+ 1 - 1
workerman/Core/Events/Libevent.php

@@ -5,7 +5,7 @@ require_once WORKERMAN_ROOT_DIR . 'Core/Events/interfaces.php';
  * 
  * libevent事件轮询库的封装
  * 
- * @author walkor <workerman.net>
+ * @author walkor <walkor@workerman.net>
  */
 class Libevent implements BaseEvent
 {

+ 1 - 1
workerman/Core/Events/Select.php

@@ -6,7 +6,7 @@ require_once WORKERMAN_ROOT_DIR . 'Core/Events/interfaces.php';
  * select 轮询封装
  * 如果没有其它可用库worker进程也会自动使用该库
  * 
-* @author walkor <workerman.net>
+* @author walkor <walkor@workerman.net>
  */
 
 class Select implements BaseEvent

+ 1 - 1
workerman/Core/Events/interfaces.php

@@ -5,7 +5,7 @@ namespace Man\Core\Events;
  * 事件轮询库的通用接口
  * 其它事件轮询库需要实现这些接口才能在这个server框架中使用
  * 
- * @author walkor <workerman.net>
+ * @author walkor <walkor@workerman.net>
  *
  */
 interface BaseEvent

+ 1 - 1
workerman/Core/Lib/Checker.php

@@ -3,7 +3,7 @@ namespace Man\Core\Lib;
 /**
  * 环境检查相关
  * 
-* @author walkor <workerman.net>
+* @author walkor <walkor@workerman.net>
  */
 class Checker
 {

+ 1 - 1
workerman/Core/Lib/Log.php

@@ -4,7 +4,7 @@ namespace Man\Core\Lib;
  * 
  * 日志类
  * 
-* @author walkor <workerman.net>
+* @author walkor <walkor@workerman.net>
  */
 class Log 
 {

+ 1 - 1
workerman/Core/Lib/Task.php

@@ -11,7 +11,7 @@ namespace Man\Core\Lib;
  * \Man\Core\Lib\Task::add(5, array('class', 'method'), array($arg1, $arg2..));
  * <code>
  * </pre>
-* @author walkor <workerman.net>
+* @author walkor <walkor@workerman.net>
  */
 class Task 
 {

+ 1 - 1
workerman/Core/Master.php

@@ -18,7 +18,7 @@ require_once WORKERMAN_ROOT_DIR . 'Core/Lib/Mutex.php';
  * 
  * @package Core
  * 
-* @author walkor <workerman.net>
+* @author walkor <walkor@workerman.net>
  * <b>使用示例:</b>
  * <pre>
  * <code>

+ 1 - 1
workerman/Core/SocketWorker.php

@@ -9,7 +9,7 @@ require_once WORKERMAN_ROOT_DIR . 'Core/Lib/Config.php';
 /**
  * SocketWorker 监听某个端口,对外提供网络服务的worker
  * 
-* @author walkor <workerman.net>
+* @author walkor <walkor@workerman.net>
 * 
  * <b>使用示例:</b>
  * <pre>