Completed
Push — master ( 026b2f...fbea6a )
by Taosikai
11:48
created
examples/login_for_credential.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 use Slince\SmartQQ\Client;
4 4
 
5
-include __DIR__.'/bootstrap.php';
5
+include __DIR__ . '/bootstrap.php';
6 6
 
7 7
 //创建smartQQ客户端
8 8
 $smartQQ = new Client();
Please login to merge, or discard this patch.
src/Client.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -358,7 +358,7 @@
 block discarded – undo
358 358
      *
359 359
      * @param Entity\Friend $friend
360 360
      *
361
-     * @return string
361
+     * @return integer
362 362
      */
363 363
     public function getFriendLnick(Entity\Friend $friend)
364 364
     {
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     {
85 85
         // 兼容二维码位置传参
86 86
         if (is_string($qrCallback)) {
87
-            $qrCallback = function ($qrcode) use($qrCallback){
87
+            $qrCallback = function($qrcode) use($qrCallback){
88 88
                 Utils::getFilesystem()->dumpFile($qrCallback, $qrcode);
89 89
             };
90 90
         }
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
      */
260 260
     public function getFriendQQ(Entity\Friend $friend)
261 261
     {
262
-        @trigger_error('The api is not supported now',E_USER_DEPRECATED);
262
+        @trigger_error('The api is not supported now', E_USER_DEPRECATED);
263 263
 
264 264
         $request = new Request\GetQQRequest($friend, $this->getCredential());
265 265
         $response = $this->sendRequest($request);
Please login to merge, or discard this patch.
examples/get_groups.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  */
5 5
 use Slince\SmartQQ\Client;
6 6
 
7
-include __DIR__.'/bootstrap.php';
7
+include __DIR__ . '/bootstrap.php';
8 8
 
9 9
 //创建smartQQ客户端
10 10
 $smartQQ = new Client(getCredential());
Please login to merge, or discard this patch.
examples/get_friends.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  */
5 5
 use Slince\SmartQQ\Client;
6 6
 
7
-include __DIR__.'/bootstrap.php';
7
+include __DIR__ . '/bootstrap.php';
8 8
 
9 9
 //创建smartQQ客户端
10 10
 $smartQQ = new Client(getCredential());
Please login to merge, or discard this patch.
examples/get_recent_list.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  */
5 5
 use Slince\SmartQQ\Client;
6 6
 
7
-include __DIR__.'/bootstrap.php';
7
+include __DIR__ . '/bootstrap.php';
8 8
 
9 9
 //创建smartQQ客户端
10 10
 $smartQQ = new Client(getCredential());
Please login to merge, or discard this patch.
examples/get_friend_qq.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  */
5 5
 use Slince\SmartQQ\Client;
6 6
 
7
-include __DIR__.'/bootstrap.php';
7
+include __DIR__ . '/bootstrap.php';
8 8
 
9 9
 //创建smartQQ客户端
10 10
 $smartQQ = new Client(getCredential());
Please login to merge, or discard this patch.
examples/get_friend_lnick.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  */
5 5
 use Slince\SmartQQ\Client;
6 6
 
7
-include __DIR__.'/bootstrap.php';
7
+include __DIR__ . '/bootstrap.php';
8 8
 
9 9
 //创建smartQQ客户端
10 10
 $smartQQ = new Client(getCredential());
Please login to merge, or discard this patch.
examples/get_self_user.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  */
5 5
 use Slince\SmartQQ\Client;
6 6
 
7
-include __DIR__.'/bootstrap.php';
7
+include __DIR__ . '/bootstrap.php';
8 8
 
9 9
 //创建smartQQ客户端
10 10
 $smartQQ = new Client(getCredential());
Please login to merge, or discard this patch.