Skip to content

Commit fb74dc2

Browse files
committed
update
1 parent 4d1c167 commit fb74dc2

24 files changed

+71
-71
lines changed

protocols/MySQL.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
namespace Protocols;
66

7-
use nWorkbunny\MysqlProtocol\Utils\Binary;
8-
use nWorkbunny\MysqlProtocol\Utils\Packet;
7+
use Workbunny\MysqlProtocol\Utils\Binary;
8+
use Workbunny\MysqlProtocol\Utils\Packet;
99
use Workerman\Connection\ConnectionInterface;
1010
use Workerman\Worker;
1111

src/Constants/Capabilities.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace nWorkbunny\MysqlProtocol\Constants;
5+
namespace Workbunny\MysqlProtocol\Constants;
66

77
enum Capabilities: int
88
{

src/Constants/Errors.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace nWorkbunny\MysqlProtocol\Constants;
5+
namespace Workbunny\MysqlProtocol\Constants;
66

77
enum Errors : int
88
{

src/Exceptions/PacketException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace nWorkbunny\MysqlProtocol\Exceptions;
5+
namespace Workbunny\MysqlProtocol\Exceptions;
66

77
class PacketException extends \RuntimeException
88
{

src/Packets/AuthMoreDataRequest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
declare(strict_types=1);
44

5-
namespace nWorkbunny\MysqlProtocol\Packets;
5+
namespace Workbunny\MysqlProtocol\Packets;
66

7-
use nWorkbunny\MysqlProtocol\Exceptions\PacketException;
8-
use nWorkbunny\MysqlProtocol\Utils\Binary;
9-
use nWorkbunny\MysqlProtocol\Utils\Packet;
7+
use Workbunny\MysqlProtocol\Exceptions\PacketException;
8+
use Workbunny\MysqlProtocol\Utils\Binary;
9+
use Workbunny\MysqlProtocol\Utils\Packet;
1010

1111
/**
1212
* AuthMoreDataRequest 用于服务器向客户端请求全认证数据。

src/Packets/AuthMoreDataResponse.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
declare(strict_types=1);
44

5-
namespace nWorkbunny\MysqlProtocol\Packets;
5+
namespace Workbunny\MysqlProtocol\Packets;
66

7-
use nWorkbunny\MysqlProtocol\Exceptions\PacketException;
8-
use nWorkbunny\MysqlProtocol\Utils\Binary;
9-
use nWorkbunny\MysqlProtocol\Utils\Packet;
7+
use Workbunny\MysqlProtocol\Exceptions\PacketException;
8+
use Workbunny\MysqlProtocol\Utils\Binary;
9+
use Workbunny\MysqlProtocol\Utils\Packet;
1010

1111
/**
1212
* AuthMoreDataResponse 用于客户端发送全认证响应数据。

src/Packets/AuthSwitchRequest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
declare(strict_types=1);
44

5-
namespace nWorkbunny\MysqlProtocol\Packets;
5+
namespace Workbunny\MysqlProtocol\Packets;
66

7-
use nWorkbunny\MysqlProtocol\Exceptions\PacketException;
8-
use nWorkbunny\MysqlProtocol\Utils\Binary;
7+
use Workbunny\MysqlProtocol\Exceptions\PacketException;
8+
use Workbunny\MysqlProtocol\Utils\Binary;
99
use InvalidArgumentException;
10-
use nWorkbunny\MysqlProtocol\Utils\Packet;
10+
use Workbunny\MysqlProtocol\Utils\Packet;
1111

1212
class AuthSwitchRequest implements PacketInterface
1313
{

src/Packets/AuthSwitchResponse.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
declare(strict_types=1);
44

5-
namespace nWorkbunny\MysqlProtocol\Packets;
5+
namespace Workbunny\MysqlProtocol\Packets;
66

7-
use nWorkbunny\MysqlProtocol\Exceptions\PacketException;
8-
use nWorkbunny\MysqlProtocol\Utils\Binary;
9-
use nWorkbunny\MysqlProtocol\Utils\Packet;
7+
use Workbunny\MysqlProtocol\Exceptions\PacketException;
8+
use Workbunny\MysqlProtocol\Utils\Binary;
9+
use Workbunny\MysqlProtocol\Utils\Packet;
1010

1111
class AuthSwitchResponse implements PacketInterface
1212
{

src/Packets/Command.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
declare(strict_types=1);
44

5-
namespace nWorkbunny\MysqlProtocol\Packets;
5+
namespace Workbunny\MysqlProtocol\Packets;
66

7-
use nWorkbunny\MysqlProtocol\Exceptions\PacketException;
8-
use nWorkbunny\MysqlProtocol\Utils\Binary;
7+
use Workbunny\MysqlProtocol\Exceptions\PacketException;
8+
use Workbunny\MysqlProtocol\Utils\Binary;
99
use InvalidArgumentException;
10-
use nWorkbunny\MysqlProtocol\Utils\Packet;
10+
use Workbunny\MysqlProtocol\Utils\Packet;
1111

1212
class Command implements PacketInterface
1313
{

src/Packets/EOF.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
declare(strict_types=1);
44

5-
namespace nWorkbunny\MysqlProtocol\Packets;
5+
namespace Workbunny\MysqlProtocol\Packets;
66

7-
use nWorkbunny\MysqlProtocol\Exceptions\PacketException;
8-
use nWorkbunny\MysqlProtocol\Utils\Binary;
7+
use Workbunny\MysqlProtocol\Exceptions\PacketException;
8+
use Workbunny\MysqlProtocol\Utils\Binary;
99
use InvalidArgumentException;
10-
use nWorkbunny\MysqlProtocol\Utils\Packet;
10+
use Workbunny\MysqlProtocol\Utils\Packet;
1111

1212
class EOF implements PacketInterface
1313
{

0 commit comments

Comments
 (0)