GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#2)
by
unknown
01:46
created
QRCode.class.php 1 patch
Doc Comments   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      * The name of the person.
31 31
      *
32 32
      * @param string $sName
33
-     * @return object this
33
+     * @return QRCode this
34 34
      */
35 35
     public function name($sName)
36 36
     {
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      * The full name of the person.
43 43
      *
44 44
      * @param string $sFullName
45
-     * @return object this
45
+     * @return QRCode this
46 46
      */
47 47
     public function fullName($sFullName)
48 48
     {
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      * Delivery address.
55 55
      *
56 56
      * @param string $sAddress
57
-     * @return object this
57
+     * @return QRCode this
58 58
      */
59 59
     public function address($sAddress)
60 60
     {
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      * Nickname.
67 67
      *
68 68
      * @param string $sNickname
69
-     * @return object this
69
+     * @return QRCode this
70 70
      */
71 71
     public function nickName($sNickname)
72 72
     {
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      * Email address.
79 79
      *
80 80
      * @param string $sMail
81
-     * @return object this
81
+     * @return QRCode this
82 82
      */
83 83
     public function email($sMail)
84 84
     {
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      * Work Phone.
91 91
      *
92 92
      * @param string $sVal
93
-     * @return object this
93
+     * @return QRCode this
94 94
      */
95 95
     public function workPhone($sVal)
96 96
     {
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      * Home Phone.
103 103
      *
104 104
      * @param string $sVal
105
-     * @return object this
105
+     * @return QRCode this
106 106
      */
107 107
     public function homePhone($sVal)
108 108
     {
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
      * URL address.
115 115
      *
116 116
      * @param string $sUrl
117
-     * @return object this
117
+     * @return QRCode this
118 118
      */
119 119
     public function url($sUrl)
120 120
     {
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
      *
129 129
      * @param string $sPhone
130 130
      * @param string $sText
131
-     * @return object this
131
+     * @return QRCode this
132 132
      */
133 133
     public function sms($sPhone, $sText)
134 134
     {
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
      * Birthday.
141 141
      *
142 142
      * @param string $sBirthday Date in the format YYYY-MM-DD or ISO 8601
143
-     * @return object this
143
+     * @return QRCode this
144 144
      */
145 145
     public function birthday($sBirthday)
146 146
     {
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
      * Anniversary.
153 153
      *
154 154
      * @param string $sBirthDate Date in the format YYYY-MM-DD or ISO 8601
155
-     * @return object this
155
+     * @return QRCode this
156 156
      */
157 157
     public function anniversary($sBirthDate)
158 158
     {
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
      * Gender.
165 165
      *
166 166
      * @param string $sSex F = Female. M = Male
167
-     * @return object this
167
+     * @return QRCode this
168 168
      */
169 169
     public function gender($sSex)
170 170
     {
@@ -175,8 +175,8 @@  discard block
 block discarded – undo
175 175
     /**
176 176
      * A list of "tags" that can be used to describe the object represented by this vCard.
177 177
      *
178
-     * @param string $sCategory
179
-     * @return object this
178
+     * @param string $sCategories
179
+     * @return QRCode this
180 180
      */
181 181
     public function categories($sCategories)
182 182
     {
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
      * The instant messenger (Instant Messaging and Presence Protocol).
189 189
      *
190 190
      * @param string $sVal
191
-     * @return object this
191
+     * @return QRCode this
192 192
      */
193 193
     public function impp($sVal)
194 194
     {
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
      * Photo (avatar).
201 201
      *
202 202
      * @param string $sImgUrl URL of the image.
203
-     * @return object this
203
+     * @return QRCode this
204 204
      * @throws InvalidArgumentException If the image format is invalid.
205 205
      */
206 206
     public function photo($sImgUrl)
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
      * The role, occupation, or business category of the vCard object within an organization.
221 221
      *
222 222
      * @param string $sRole e.g., Executive
223
-     * @return object this
223
+     * @return QRCode this
224 224
      */
225 225
     public function role($sRole)
226 226
     {
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
      * attribute and the X.520 Organization Unit attribute.
237 237
      *
238 238
      * @param string $sOrg e.g., Google;GMail Team;Spam Detection Squad
239
-     * @return object this
239
+     * @return QRCode this
240 240
      */
241 241
     public function organization($sOrg)
242 242
     {
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
      * The supplemental information or a comment that is associated with the vCard.
249 249
      *
250 250
      * @param string $sText
251
-     * @return object this
251
+     * @return QRCode this
252 252
      */
253 253
     public function note($sText)
254 254
     {
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
      *
262 262
      * @param string $sTitle
263 263
      * @param string $sUrl
264
-     * @return object this
264
+     * @return QRCode this
265 265
      */
266 266
     public function bookmark($sTitle, $sUrl)
267 267
     {
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
      * @param string $sLat Latitude
276 276
      * @param string $sLon Longitude
277 277
      * @param integer $iHeight Height
278
-     * @return object this
278
+     * @return QRCode this
279 279
      */
280 280
     public function geo($sLat, $sLon, $iHeight)
281 281
     {
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
      * The language that the person speaks.
288 288
      *
289 289
      * @param string $sLang e.g., en-US
290
-     * @return object this
290
+     * @return QRCode this
291 291
      */
292 292
     public function lang($sLang)
293 293
     {
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
      * @param string $sType
302 302
      * @param string $sSsid
303 303
      * @param string $sPwd
304
-     * @return object this
304
+     * @return QRCode this
305 305
      */
306 306
     public function wifi($sType, $sSsid, $sPwd)
307 307
     {
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
     /**
313 313
      * Generate the QR code.
314 314
      *
315
-     * @return object this
315
+     * @return QRCode this
316 316
      */
317 317
     public function finish()
318 318
     {
Please login to merge, or discard this patch.