Skip to content

Commit

Permalink
兼容关闭 Swoole 短名称的场景
Browse files Browse the repository at this point in the history
  • Loading branch information
Yurunsoft committed Oct 31, 2021
1 parent e677409 commit 1be0a38
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example/TCPServer/test-client/eof-client.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

// EOF自动分包的客户端测试

go(function () {
Swoole\Coroutine\run(function () {
$client = new Swoole\Coroutine\Client(\SWOOLE_SOCK_TCP);

$client->set([
Expand Down
2 changes: 1 addition & 1 deletion example/TCPServer/test-client/fixed-client.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

// EOF自动分包的客户端测试

go(function () {
Swoole\Coroutine\run(function () {
$client = new Client(\SWOOLE_SOCK_TCP);

$client->set([
Expand Down
2 changes: 1 addition & 1 deletion example/UDPServer/test-client/client.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

go(function () {
Swoole\Coroutine\run(function () {
$client = new Swoole\Coroutine\Client(\SWOOLE_SOCK_UDP);
$client->connect('127.0.0.1', 8083);

Expand Down

0 comments on commit 1be0a38

Please sign in to comment.