Skip to content
This repository was archived by the owner on Aug 15, 2021. It is now read-only.

Commit e31c8bd

Browse files
author
slight
committed
namespace
1 parent 5b489a2 commit e31c8bd

File tree

6 files changed

+123
-55
lines changed

6 files changed

+123
-55
lines changed

.idea/workspace.xml

Lines changed: 118 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ CoolQ机器人 基于[http插件](https://richardchien.github.io/coolq-http-api/
3030
```
3131
require_once '../Autoloader.php';
3232
33-
use CoolQ\CoolQ;
33+
use CoolQSDK\CoolQ;
3434
3535
$CoolQ = new CoolQ('127.0.0.1',5700,'token');
3636

examples/getLoginInfo.php

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

99
require_once '../Autoloader.php';
1010

11-
use CoolQ\CoolQ;
11+
use CoolQSDK\CoolQ;
1212

1313
$CoolQ = new CoolQ('127.0.0.1',5700,'slight');
1414
echo $CoolQ->getLoginInfo();

src/CoolQ/CQ.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Time: 13:52
77
*/
88

9-
namespace CoolQ;
9+
namespace CoolQSDK;
1010

1111

1212
class CQ

src/CoolQ/CoolQ.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Time: 12:57
77
*/
88

9-
namespace CoolQ;
9+
namespace CoolQSDK;
1010

1111

1212
class CoolQ

src/CoolQ/MsgTool.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Time: 13:55
77
*/
88

9-
namespace CoolQ;
9+
namespace CoolQSDK;
1010

1111

1212
class MsgTool

0 commit comments

Comments
 (0)