├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── src ├── Fastdfs_client │ ├── FastDFS.php │ ├── FastDFSException.php │ └── fastdfs_client.php ├── Msgpack │ ├── MessagePack.php │ ├── MessagePackUnpacker.php │ └── msgpack.php ├── Redis │ ├── Redis.php │ ├── RedisArray.php │ ├── RedisCluster.php │ ├── RedisClusterException.php │ └── RedisException.php ├── Seaslog │ └── SeasLog.php ├── Swoole │ ├── Async.php │ ├── Atomic.php │ ├── Atomic │ │ └── Long.php │ ├── Buffer.php │ ├── Chan.php │ ├── Channel.php │ ├── Client.php │ ├── Co.php │ ├── Co │ │ ├── Http │ │ │ ├── Client.php │ │ │ └── Server.php │ │ ├── Http2 │ │ │ └── Client.php │ │ ├── MySQL.php │ │ ├── Redis.php │ │ ├── Redis │ │ │ └── Server.php │ │ ├── Server.php │ │ └── WebSocket │ │ │ └── Server.php │ ├── Connection │ │ └── Iterator.php │ ├── Coroutine.php │ ├── Coroutine │ │ ├── Channel.php │ │ ├── Client.php │ │ ├── Http │ │ │ └── Client.php │ │ ├── Http2 │ │ │ ├── Client.php │ │ │ └── Request.php │ │ ├── Iterator.php │ │ ├── MySQL.php │ │ ├── MySQL │ │ │ ├── Exception.php │ │ │ └── Statement.php │ │ ├── PostgreSQL.php │ │ ├── Redis.php │ │ ├── Socket.php │ │ └── Socket │ │ │ └── Exception.php │ ├── Event.php │ ├── Exception.php │ ├── ExitException.php │ ├── Http │ │ ├── Client.php │ │ ├── Request.php │ │ ├── Response.php │ │ └── Server.php │ ├── Http2 │ │ ├── Client.php │ │ ├── Request.php │ │ └── Response.php │ ├── Lock.php │ ├── Memory │ │ ├── Pool.php │ │ └── Pool │ │ │ └── Slice.php │ ├── Mmap.php │ ├── MsgQueue.php │ ├── MySQL.php │ ├── MySQL │ │ └── Exception.php │ ├── Process.php │ ├── Process │ │ └── Pool.php │ ├── Redis.php │ ├── Redis │ │ └── Server.php │ ├── RingQueue.php │ ├── Runtime.php │ ├── Serialize.php │ ├── Server.php │ ├── Server │ │ └── Port.php │ ├── Table.php │ ├── Table │ │ └── Row.php │ ├── Timer.php │ ├── WebSocket │ │ ├── CloseFrame.php │ │ ├── Frame.php │ │ └── Server.php │ ├── swoole.namespace.php │ ├── swoole.php │ ├── swoole_async.php │ ├── swoole_atomic.php │ ├── swoole_atomic_long.php │ ├── swoole_buffer.php │ ├── swoole_channel.php │ ├── swoole_client.php │ ├── swoole_connection_iterator.php │ ├── swoole_coroutine.php │ ├── swoole_event.php │ ├── swoole_exception.php │ ├── swoole_http2_client.php │ ├── swoole_http2_response.php │ ├── swoole_http_client.php │ ├── swoole_http_request.php │ ├── swoole_http_response.php │ ├── swoole_http_server.php │ ├── swoole_lock.php │ ├── swoole_mmap.php │ ├── swoole_msgqueue.php │ ├── swoole_mysql.php │ ├── swoole_mysql_exception.php │ ├── swoole_process.php │ ├── swoole_process_pool.php │ ├── swoole_redis.php │ ├── swoole_redis_server.php │ ├── swoole_ringqueue.php │ ├── swoole_serialize.php │ ├── swoole_server.php │ ├── swoole_server_port.php │ ├── swoole_table.php │ ├── swoole_table_row.php │ ├── swoole_timer.php │ ├── swoole_websocke_closet_frame.php │ ├── swoole_websocket_frame.php │ └── swoole_websocket_server.php ├── Xhprof │ └── xhprof.php ├── Yac │ └── Yac.php ├── Yaconf │ └── Yaconf.php ├── Yaf │ ├── Action_Abstract.php │ ├── Application.php │ ├── Bootstrap_Abstract.php │ ├── Config │ │ ├── Ini.php │ │ └── Simple.php │ ├── Config_Abstract.php │ ├── Controller_Abstract.php │ ├── Dispatcher.php │ ├── Exception.php │ ├── Exception │ │ ├── DispatchFailed.php │ │ ├── LoadFailed.php │ │ ├── LoadFailed │ │ │ ├── Action.php │ │ │ ├── Controller.php │ │ │ ├── Module.php │ │ │ └── View.php │ │ ├── RouterFailed.php │ │ ├── StartupError.php │ │ └── TypeError.php │ ├── Loader.php │ ├── Plugin_Abstract.php │ ├── Registry.php │ ├── Request │ │ ├── Http.php │ │ └── Simple.php │ ├── Request_Abstract.php │ ├── Response │ │ ├── Cli.php │ │ └── Http.php │ ├── Response_Abstract.php │ ├── Route │ │ ├── Map.php │ │ ├── Regex.php │ │ ├── Rewrite.php │ │ ├── Simple.php │ │ └── Supervar.php │ ├── Route_Interface.php │ ├── Route_Static.php │ ├── Router.php │ ├── Session.php │ ├── View │ │ └── Simple.php │ ├── View_Interface.php │ ├── Yaf_Action_Abstract.php │ ├── Yaf_Application.php │ ├── Yaf_Bootstrap_Abstract.php │ ├── Yaf_Config_Abstract.php │ ├── Yaf_Config_Ini.php │ ├── Yaf_Config_Simple.php │ ├── Yaf_Controller_Abstract.php │ ├── Yaf_Dispatcher.php │ ├── Yaf_Exception.php │ ├── Yaf_Exception_DispatchFailed.php │ ├── Yaf_Exception_LoadFailed.php │ ├── Yaf_Exception_LoadFailed_Action.php │ ├── Yaf_Exception_LoadFailed_Controller.php │ ├── Yaf_Exception_LoadFailed_Module.php │ ├── Yaf_Exception_LoadFailed_View.php │ ├── Yaf_Exception_RouterFailed.php │ ├── Yaf_Exception_StartupError.php │ ├── Yaf_Exception_TypeError.php │ ├── Yaf_Loader.php │ ├── Yaf_Plugin_Abstract.php │ ├── Yaf_Registry.php │ ├── Yaf_Request_Abstract.php │ ├── Yaf_Request_Http.php │ ├── Yaf_Request_Simple.php │ ├── Yaf_Response_Abstract.php │ ├── Yaf_Response_Cli.php │ ├── Yaf_Response_Http.php │ ├── Yaf_Route_Interface.php │ ├── Yaf_Route_Map.php │ ├── Yaf_Route_Regex.php │ ├── Yaf_Route_Rewrite.php │ ├── Yaf_Route_Simple.php │ ├── Yaf_Route_Static.php │ ├── Yaf_Route_Supervar.php │ ├── Yaf_Router.php │ ├── Yaf_Session.php │ ├── Yaf_View_Interface.php │ ├── Yaf_View_Simple.php │ ├── yaf.namespace.php │ └── yaf.php └── Yar │ ├── Yar.php │ ├── Yar_Client.php │ ├── Yar_Client_Exception.php │ ├── Yar_Client_Packager_Exception.php │ ├── Yar_Client_Protocol_Exception.php │ ├── Yar_Client_Transport_Exception.php │ ├── Yar_Concurrent_Client.php │ ├── Yar_Server.php │ ├── Yar_Server_Exception.php │ ├── Yar_Server_Output_Exception.php │ ├── Yar_Server_Packager_Exception.php │ ├── Yar_Server_Protocol_Exception.php │ └── Yar_Server_Request_Exception.php ├── static └── images │ ├── step1.png │ ├── step2.png │ └── yaf.auto.complete.png └── tests └── swoole-project ├── composer.json └── test.php /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | .idea 3 | 4 | /vendor/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/composer.json -------------------------------------------------------------------------------- /src/Fastdfs_client/FastDFS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Fastdfs_client/FastDFS.php -------------------------------------------------------------------------------- /src/Fastdfs_client/FastDFSException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Fastdfs_client/FastDFSException.php -------------------------------------------------------------------------------- /src/Fastdfs_client/fastdfs_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Fastdfs_client/fastdfs_client.php -------------------------------------------------------------------------------- /src/Msgpack/MessagePack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Msgpack/MessagePack.php -------------------------------------------------------------------------------- /src/Msgpack/MessagePackUnpacker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Msgpack/MessagePackUnpacker.php -------------------------------------------------------------------------------- /src/Msgpack/msgpack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Msgpack/msgpack.php -------------------------------------------------------------------------------- /src/Redis/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Redis/Redis.php -------------------------------------------------------------------------------- /src/Redis/RedisArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Redis/RedisArray.php -------------------------------------------------------------------------------- /src/Redis/RedisCluster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Redis/RedisCluster.php -------------------------------------------------------------------------------- /src/Redis/RedisClusterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Redis/RedisClusterException.php -------------------------------------------------------------------------------- /src/Redis/RedisException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Redis/RedisException.php -------------------------------------------------------------------------------- /src/Seaslog/SeasLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Seaslog/SeasLog.php -------------------------------------------------------------------------------- /src/Swoole/Async.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Async.php -------------------------------------------------------------------------------- /src/Swoole/Atomic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Atomic.php -------------------------------------------------------------------------------- /src/Swoole/Atomic/Long.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Atomic/Long.php -------------------------------------------------------------------------------- /src/Swoole/Buffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Buffer.php -------------------------------------------------------------------------------- /src/Swoole/Chan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Chan.php -------------------------------------------------------------------------------- /src/Swoole/Channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Channel.php -------------------------------------------------------------------------------- /src/Swoole/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Client.php -------------------------------------------------------------------------------- /src/Swoole/Co.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Co.php -------------------------------------------------------------------------------- /src/Swoole/Co/Http/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Co/Http/Client.php -------------------------------------------------------------------------------- /src/Swoole/Co/Http/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Co/Http/Server.php -------------------------------------------------------------------------------- /src/Swoole/Co/Http2/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Co/Http2/Client.php -------------------------------------------------------------------------------- /src/Swoole/Co/MySQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Co/MySQL.php -------------------------------------------------------------------------------- /src/Swoole/Co/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Co/Redis.php -------------------------------------------------------------------------------- /src/Swoole/Co/Redis/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Co/Redis/Server.php -------------------------------------------------------------------------------- /src/Swoole/Co/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Co/Server.php -------------------------------------------------------------------------------- /src/Swoole/Co/WebSocket/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Co/WebSocket/Server.php -------------------------------------------------------------------------------- /src/Swoole/Connection/Iterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Connection/Iterator.php -------------------------------------------------------------------------------- /src/Swoole/Coroutine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Coroutine.php -------------------------------------------------------------------------------- /src/Swoole/Coroutine/Channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Coroutine/Channel.php -------------------------------------------------------------------------------- /src/Swoole/Coroutine/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Coroutine/Client.php -------------------------------------------------------------------------------- /src/Swoole/Coroutine/Http/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Coroutine/Http/Client.php -------------------------------------------------------------------------------- /src/Swoole/Coroutine/Http2/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Coroutine/Http2/Client.php -------------------------------------------------------------------------------- /src/Swoole/Coroutine/Http2/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Coroutine/Http2/Request.php -------------------------------------------------------------------------------- /src/Swoole/Coroutine/Iterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Coroutine/Iterator.php -------------------------------------------------------------------------------- /src/Swoole/Coroutine/MySQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Coroutine/MySQL.php -------------------------------------------------------------------------------- /src/Swoole/Coroutine/MySQL/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Coroutine/MySQL/Exception.php -------------------------------------------------------------------------------- /src/Swoole/Coroutine/MySQL/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Coroutine/MySQL/Statement.php -------------------------------------------------------------------------------- /src/Swoole/Coroutine/PostgreSQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Coroutine/PostgreSQL.php -------------------------------------------------------------------------------- /src/Swoole/Coroutine/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Coroutine/Redis.php -------------------------------------------------------------------------------- /src/Swoole/Coroutine/Socket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Coroutine/Socket.php -------------------------------------------------------------------------------- /src/Swoole/Coroutine/Socket/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Coroutine/Socket/Exception.php -------------------------------------------------------------------------------- /src/Swoole/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Event.php -------------------------------------------------------------------------------- /src/Swoole/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Exception.php -------------------------------------------------------------------------------- /src/Swoole/ExitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/ExitException.php -------------------------------------------------------------------------------- /src/Swoole/Http/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Http/Client.php -------------------------------------------------------------------------------- /src/Swoole/Http/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Http/Request.php -------------------------------------------------------------------------------- /src/Swoole/Http/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Http/Response.php -------------------------------------------------------------------------------- /src/Swoole/Http/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Http/Server.php -------------------------------------------------------------------------------- /src/Swoole/Http2/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Http2/Client.php -------------------------------------------------------------------------------- /src/Swoole/Http2/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Http2/Request.php -------------------------------------------------------------------------------- /src/Swoole/Http2/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Http2/Response.php -------------------------------------------------------------------------------- /src/Swoole/Lock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Lock.php -------------------------------------------------------------------------------- /src/Swoole/Memory/Pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Memory/Pool.php -------------------------------------------------------------------------------- /src/Swoole/Memory/Pool/Slice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Memory/Pool/Slice.php -------------------------------------------------------------------------------- /src/Swoole/Mmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Mmap.php -------------------------------------------------------------------------------- /src/Swoole/MsgQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/MsgQueue.php -------------------------------------------------------------------------------- /src/Swoole/MySQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/MySQL.php -------------------------------------------------------------------------------- /src/Swoole/MySQL/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/MySQL/Exception.php -------------------------------------------------------------------------------- /src/Swoole/Process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Process.php -------------------------------------------------------------------------------- /src/Swoole/Process/Pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Process/Pool.php -------------------------------------------------------------------------------- /src/Swoole/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Redis.php -------------------------------------------------------------------------------- /src/Swoole/Redis/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Redis/Server.php -------------------------------------------------------------------------------- /src/Swoole/RingQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/RingQueue.php -------------------------------------------------------------------------------- /src/Swoole/Runtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Runtime.php -------------------------------------------------------------------------------- /src/Swoole/Serialize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Serialize.php -------------------------------------------------------------------------------- /src/Swoole/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Server.php -------------------------------------------------------------------------------- /src/Swoole/Server/Port.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Server/Port.php -------------------------------------------------------------------------------- /src/Swoole/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Table.php -------------------------------------------------------------------------------- /src/Swoole/Table/Row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Table/Row.php -------------------------------------------------------------------------------- /src/Swoole/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/Timer.php -------------------------------------------------------------------------------- /src/Swoole/WebSocket/CloseFrame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/WebSocket/CloseFrame.php -------------------------------------------------------------------------------- /src/Swoole/WebSocket/Frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/WebSocket/Frame.php -------------------------------------------------------------------------------- /src/Swoole/WebSocket/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/WebSocket/Server.php -------------------------------------------------------------------------------- /src/Swoole/swoole.namespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole.namespace.php -------------------------------------------------------------------------------- /src/Swoole/swoole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole.php -------------------------------------------------------------------------------- /src/Swoole/swoole_async.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_async.php -------------------------------------------------------------------------------- /src/Swoole/swoole_atomic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_atomic.php -------------------------------------------------------------------------------- /src/Swoole/swoole_atomic_long.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_atomic_long.php -------------------------------------------------------------------------------- /src/Swoole/swoole_buffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_buffer.php -------------------------------------------------------------------------------- /src/Swoole/swoole_channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_channel.php -------------------------------------------------------------------------------- /src/Swoole/swoole_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_client.php -------------------------------------------------------------------------------- /src/Swoole/swoole_connection_iterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_connection_iterator.php -------------------------------------------------------------------------------- /src/Swoole/swoole_coroutine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_coroutine.php -------------------------------------------------------------------------------- /src/Swoole/swoole_event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_event.php -------------------------------------------------------------------------------- /src/Swoole/swoole_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_exception.php -------------------------------------------------------------------------------- /src/Swoole/swoole_http2_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_http2_client.php -------------------------------------------------------------------------------- /src/Swoole/swoole_http2_response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_http2_response.php -------------------------------------------------------------------------------- /src/Swoole/swoole_http_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_http_client.php -------------------------------------------------------------------------------- /src/Swoole/swoole_http_request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_http_request.php -------------------------------------------------------------------------------- /src/Swoole/swoole_http_response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_http_response.php -------------------------------------------------------------------------------- /src/Swoole/swoole_http_server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_http_server.php -------------------------------------------------------------------------------- /src/Swoole/swoole_lock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_lock.php -------------------------------------------------------------------------------- /src/Swoole/swoole_mmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_mmap.php -------------------------------------------------------------------------------- /src/Swoole/swoole_msgqueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_msgqueue.php -------------------------------------------------------------------------------- /src/Swoole/swoole_mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_mysql.php -------------------------------------------------------------------------------- /src/Swoole/swoole_mysql_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_mysql_exception.php -------------------------------------------------------------------------------- /src/Swoole/swoole_process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_process.php -------------------------------------------------------------------------------- /src/Swoole/swoole_process_pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_process_pool.php -------------------------------------------------------------------------------- /src/Swoole/swoole_redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_redis.php -------------------------------------------------------------------------------- /src/Swoole/swoole_redis_server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_redis_server.php -------------------------------------------------------------------------------- /src/Swoole/swoole_ringqueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_ringqueue.php -------------------------------------------------------------------------------- /src/Swoole/swoole_serialize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_serialize.php -------------------------------------------------------------------------------- /src/Swoole/swoole_server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_server.php -------------------------------------------------------------------------------- /src/Swoole/swoole_server_port.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_server_port.php -------------------------------------------------------------------------------- /src/Swoole/swoole_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_table.php -------------------------------------------------------------------------------- /src/Swoole/swoole_table_row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_table_row.php -------------------------------------------------------------------------------- /src/Swoole/swoole_timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_timer.php -------------------------------------------------------------------------------- /src/Swoole/swoole_websocke_closet_frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_websocke_closet_frame.php -------------------------------------------------------------------------------- /src/Swoole/swoole_websocket_frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_websocket_frame.php -------------------------------------------------------------------------------- /src/Swoole/swoole_websocket_server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Swoole/swoole_websocket_server.php -------------------------------------------------------------------------------- /src/Xhprof/xhprof.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Xhprof/xhprof.php -------------------------------------------------------------------------------- /src/Yac/Yac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yac/Yac.php -------------------------------------------------------------------------------- /src/Yaconf/Yaconf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaconf/Yaconf.php -------------------------------------------------------------------------------- /src/Yaf/Action_Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Action_Abstract.php -------------------------------------------------------------------------------- /src/Yaf/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Application.php -------------------------------------------------------------------------------- /src/Yaf/Bootstrap_Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Bootstrap_Abstract.php -------------------------------------------------------------------------------- /src/Yaf/Config/Ini.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Config/Ini.php -------------------------------------------------------------------------------- /src/Yaf/Config/Simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Config/Simple.php -------------------------------------------------------------------------------- /src/Yaf/Config_Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Config_Abstract.php -------------------------------------------------------------------------------- /src/Yaf/Controller_Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Controller_Abstract.php -------------------------------------------------------------------------------- /src/Yaf/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Dispatcher.php -------------------------------------------------------------------------------- /src/Yaf/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Exception.php -------------------------------------------------------------------------------- /src/Yaf/Exception/DispatchFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Exception/DispatchFailed.php -------------------------------------------------------------------------------- /src/Yaf/Exception/LoadFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Exception/LoadFailed.php -------------------------------------------------------------------------------- /src/Yaf/Exception/LoadFailed/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Exception/LoadFailed/Action.php -------------------------------------------------------------------------------- /src/Yaf/Exception/LoadFailed/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Exception/LoadFailed/Controller.php -------------------------------------------------------------------------------- /src/Yaf/Exception/LoadFailed/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Exception/LoadFailed/Module.php -------------------------------------------------------------------------------- /src/Yaf/Exception/LoadFailed/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Exception/LoadFailed/View.php -------------------------------------------------------------------------------- /src/Yaf/Exception/RouterFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Exception/RouterFailed.php -------------------------------------------------------------------------------- /src/Yaf/Exception/StartupError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Exception/StartupError.php -------------------------------------------------------------------------------- /src/Yaf/Exception/TypeError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Exception/TypeError.php -------------------------------------------------------------------------------- /src/Yaf/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Loader.php -------------------------------------------------------------------------------- /src/Yaf/Plugin_Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Plugin_Abstract.php -------------------------------------------------------------------------------- /src/Yaf/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Registry.php -------------------------------------------------------------------------------- /src/Yaf/Request/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Request/Http.php -------------------------------------------------------------------------------- /src/Yaf/Request/Simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Request/Simple.php -------------------------------------------------------------------------------- /src/Yaf/Request_Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Request_Abstract.php -------------------------------------------------------------------------------- /src/Yaf/Response/Cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Response/Cli.php -------------------------------------------------------------------------------- /src/Yaf/Response/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Response/Http.php -------------------------------------------------------------------------------- /src/Yaf/Response_Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Response_Abstract.php -------------------------------------------------------------------------------- /src/Yaf/Route/Map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Route/Map.php -------------------------------------------------------------------------------- /src/Yaf/Route/Regex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Route/Regex.php -------------------------------------------------------------------------------- /src/Yaf/Route/Rewrite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Route/Rewrite.php -------------------------------------------------------------------------------- /src/Yaf/Route/Simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Route/Simple.php -------------------------------------------------------------------------------- /src/Yaf/Route/Supervar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Route/Supervar.php -------------------------------------------------------------------------------- /src/Yaf/Route_Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Route_Interface.php -------------------------------------------------------------------------------- /src/Yaf/Route_Static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Route_Static.php -------------------------------------------------------------------------------- /src/Yaf/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Router.php -------------------------------------------------------------------------------- /src/Yaf/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Session.php -------------------------------------------------------------------------------- /src/Yaf/View/Simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/View/Simple.php -------------------------------------------------------------------------------- /src/Yaf/View_Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/View_Interface.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Action_Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Action_Abstract.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Application.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Bootstrap_Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Bootstrap_Abstract.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Config_Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Config_Abstract.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Config_Ini.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Config_Ini.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Config_Simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Config_Simple.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Controller_Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Controller_Abstract.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Dispatcher.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Exception.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Exception_DispatchFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Exception_DispatchFailed.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Exception_LoadFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Exception_LoadFailed.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Exception_LoadFailed_Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Exception_LoadFailed_Action.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Exception_LoadFailed_Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Exception_LoadFailed_Controller.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Exception_LoadFailed_Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Exception_LoadFailed_Module.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Exception_LoadFailed_View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Exception_LoadFailed_View.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Exception_RouterFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Exception_RouterFailed.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Exception_StartupError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Exception_StartupError.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Exception_TypeError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Exception_TypeError.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Loader.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Plugin_Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Plugin_Abstract.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Registry.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Request_Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Request_Abstract.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Request_Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Request_Http.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Request_Simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Request_Simple.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Response_Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Response_Abstract.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Response_Cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Response_Cli.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Response_Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Response_Http.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Route_Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Route_Interface.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Route_Map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Route_Map.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Route_Regex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Route_Regex.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Route_Rewrite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Route_Rewrite.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Route_Simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Route_Simple.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Route_Static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Route_Static.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Route_Supervar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Route_Supervar.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Router.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_Session.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_View_Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_View_Interface.php -------------------------------------------------------------------------------- /src/Yaf/Yaf_View_Simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/Yaf_View_Simple.php -------------------------------------------------------------------------------- /src/Yaf/yaf.namespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/yaf.namespace.php -------------------------------------------------------------------------------- /src/Yaf/yaf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yaf/yaf.php -------------------------------------------------------------------------------- /src/Yar/Yar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yar/Yar.php -------------------------------------------------------------------------------- /src/Yar/Yar_Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yar/Yar_Client.php -------------------------------------------------------------------------------- /src/Yar/Yar_Client_Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yar/Yar_Client_Exception.php -------------------------------------------------------------------------------- /src/Yar/Yar_Client_Packager_Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yar/Yar_Client_Packager_Exception.php -------------------------------------------------------------------------------- /src/Yar/Yar_Client_Protocol_Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yar/Yar_Client_Protocol_Exception.php -------------------------------------------------------------------------------- /src/Yar/Yar_Client_Transport_Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yar/Yar_Client_Transport_Exception.php -------------------------------------------------------------------------------- /src/Yar/Yar_Concurrent_Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yar/Yar_Concurrent_Client.php -------------------------------------------------------------------------------- /src/Yar/Yar_Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yar/Yar_Server.php -------------------------------------------------------------------------------- /src/Yar/Yar_Server_Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yar/Yar_Server_Exception.php -------------------------------------------------------------------------------- /src/Yar/Yar_Server_Output_Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yar/Yar_Server_Output_Exception.php -------------------------------------------------------------------------------- /src/Yar/Yar_Server_Packager_Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yar/Yar_Server_Packager_Exception.php -------------------------------------------------------------------------------- /src/Yar/Yar_Server_Protocol_Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yar/Yar_Server_Protocol_Exception.php -------------------------------------------------------------------------------- /src/Yar/Yar_Server_Request_Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/src/Yar/Yar_Server_Request_Exception.php -------------------------------------------------------------------------------- /static/images/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/static/images/step1.png -------------------------------------------------------------------------------- /static/images/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/static/images/step2.png -------------------------------------------------------------------------------- /static/images/yaf.auto.complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/static/images/yaf.auto.complete.png -------------------------------------------------------------------------------- /tests/swoole-project/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/tests/swoole-project/composer.json -------------------------------------------------------------------------------- /tests/swoole-project/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shixinke/php-ide-helper/HEAD/tests/swoole-project/test.php --------------------------------------------------------------------------------