Completed
Push — master ( ba17f6...fee6ef )
by Carlos
06:54 queued 03:35
created
src/User/Tag.php 1 patch
Doc Comments   +10 added lines, -11 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      *
42 42
      * @param string $name
43 43
      *
44
-     * @return int
44
+     * @return \EasyWeChat\Support\Collection
45 45
      */
46 46
     public function create($name)
47 47
     {
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     /**
56 56
      * List all tags.
57 57
      *
58
-     * @return array
58
+     * @return \EasyWeChat\Support\Collection
59 59
      */
60 60
     public function lists()
61 61
     {
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      * @param int    $tagId
69 69
      * @param string $name
70 70
      *
71
-     * @return bool
71
+     * @return \EasyWeChat\Support\Collection
72 72
      */
73 73
     public function update($tagId, $name)
74 74
     {
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      *
88 88
      * @param int $tagId
89 89
      *
90
-     * @return bool
90
+     * @return \EasyWeChat\Support\Collection
91 91
      */
92 92
     public function delete($tagId)
93 93
     {
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      *
104 104
      * @param string $openId
105 105
      *
106
-     * @return int
106
+     * @return \EasyWeChat\Support\Collection
107 107
      */
108 108
     public function userTags($openId)
109 109
     {
@@ -115,9 +115,8 @@  discard block
 block discarded – undo
115 115
     /**
116 116
      * Get users from a tag.
117 117
      *
118
-     * @param string $openId
119 118
      *
120
-     * @return int
119
+     * @return \EasyWeChat\Support\Collection
121 120
      */
122 121
     public function usersOfTag($tagId)
123 122
     {
@@ -130,9 +129,9 @@  discard block
 block discarded – undo
130 129
      * Batch tag users.
131 130
      *
132 131
      * @param array $openIds
133
-     * @param int   $tagid
132
+     * @param int   $tagId
134 133
      *
135
-     * @return bool
134
+     * @return \EasyWeChat\Support\Collection
136 135
      */
137 136
     public function batchTagUsers(array $openIds, $tagId)
138 137
     {
@@ -148,9 +147,9 @@  discard block
 block discarded – undo
148 147
      * Untag users from a tag.
149 148
      *
150 149
      * @param array $openIds
151
-     * @param int   $tagid
150
+     * @param int   $tagId
152 151
      *
153
-     * @return bool
152
+     * @return \EasyWeChat\Support\Collection
154 153
      */
155 154
     public function batchUntagUsers(array $openIds, $tagId)
156 155
     {
Please login to merge, or discard this patch.