Completed
Push — master ( 5f5211...c77afb )
by Joram van den
14:38 queued 08:49
created
lib/Ajde/Social/Provider/Google/Google/Utils.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -23,6 +23,9 @@
 block discarded – undo
23 23
  */
24 24
 class Google_Utils
25 25
 {
26
+    /**
27
+     * @param string $data
28
+     */
26 29
     public static function urlSafeB64Encode($data)
27 30
     {
28 31
         $b64 = base64_encode($data);
Please login to merge, or discard this patch.
lib/Ajde/Social/Provider/Twitter/OAuth.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -197,6 +197,12 @@  discard block
 block discarded – undo
197 197
     // (1) do a lookup in a table of trusted certs keyed off of consumer
198 198
     //
199 199
     // Either way should return a string representation of the certificate
200
+
201
+    /**
202
+     * @param OAuthRequest $request
203
+     *
204
+     * @return string
205
+     */
200 206
     protected abstract function fetch_private_cert(&$request);
201 207
 
202 208
     public function build_signature($request, $consumer, $token)
@@ -332,6 +338,9 @@  discard block
 block discarded – undo
332 338
         return new OAuthRequest($http_method, $http_url, $parameters);
333 339
     }
334 340
 
341
+    /**
342
+     * @param string $name
343
+     */
335 344
     public function set_parameter($name, $value, $allow_duplicates = true)
336 345
     {
337 346
         if ($allow_duplicates && isset($this->parameters[$name])) {
Please login to merge, or discard this patch.
lib/Ajde/Social/Provider/Twitter/twitteroauth.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -91,6 +91,7 @@  discard block
 block discarded – undo
91 91
      * Get a request_token from Twitter
92 92
      *
93 93
      * @returns a key/value array containing oauth_token and oauth_token_secret
94
+     * @param string $oauth_callback
94 95
      */
95 96
     function getRequestToken($oauth_callback)
96 97
     {
@@ -164,6 +165,7 @@  discard block
 block discarded – undo
164 165
 
165 166
     /**
166 167
      * GET wrapper for oAuthRequest.
168
+     * @param string $url
167 169
      */
168 170
     function get($url, $parameters = [])
169 171
     {
@@ -177,6 +179,7 @@  discard block
 block discarded – undo
177 179
 
178 180
     /**
179 181
      * POST wrapper for oAuthRequest.
182
+     * @param string $url
180 183
      */
181 184
     function post($url, $parameters = [])
182 185
     {
@@ -203,6 +206,7 @@  discard block
 block discarded – undo
203 206
 
204 207
     /**
205 208
      * Format and sign an OAuth / API request
209
+     * @param string $method
206 210
      */
207 211
     function oAuthRequest($url, $method, $parameters)
208 212
     {
@@ -222,6 +226,7 @@  discard block
 block discarded – undo
222 226
     /**
223 227
      * Make an HTTP request
224 228
      *
229
+     * @param string $postfields
225 230
      * @return API results
226 231
      */
227 232
     function http($url, $method, $postfields = null)
Please login to merge, or discard this patch.
lib/Ajde/Template.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -5,6 +5,9 @@  discard block
 block discarded – undo
5 5
     protected $_contents = null;
6 6
     protected $_table = [];
7 7
 
8
+    /**
9
+     * @param string $base
10
+     */
8 11
     public function  __construct($base, $action, $format = 'html')
9 12
     {
10 13
         $this->set('base', $base);
@@ -34,6 +37,9 @@  discard block
 block discarded – undo
34 37
         $this->setFileinfo();
35 38
     }
36 39
 
40
+    /**
41
+     * @param string $action
42
+     */
37 43
     public function setAction($action)
38 44
     {
39 45
         $this->set('action', $action);
@@ -113,6 +119,9 @@  discard block
 block discarded – undo
113 119
         return $this->get('parser');
114 120
     }
115 121
 
122
+    /**
123
+     * @param string $base
124
+     */
116 125
     public static function exist($base, $action, $format = 'html')
117 126
     {
118 127
         return self::_getFileInfo($base, $action, $format);
@@ -138,6 +147,9 @@  discard block
 block discarded – undo
138 147
         return $this->get('action');
139 148
     }
140 149
 
150
+    /**
151
+     * @return string
152
+     */
141 153
     public function getFormat()
142 154
     {
143 155
         return $this->get('format');
Please login to merge, or discard this patch.
lib/Ajde/Template/Parser/Phtml/Helper.php 1 patch
Doc Comments   -10 removed lines patch added patch discarded remove patch
@@ -139,8 +139,6 @@  discard block
 block discarded – undo
139 139
 
140 140
     /**
141 141
      *
142
-     * @param string $name
143
-     * @param string $version
144 142
      * @return void
145 143
      */
146 144
     public function requireGWebFont($family, $weight = [400], $subset = ['latin'])
@@ -272,7 +270,6 @@  discard block
 block discarded – undo
272 270
 
273 271
     /**
274 272
      *
275
-     * @param string $target
276 273
      * @return string
277 274
      */
278 275
     public function ACAjaxUpload($name, $options = [], $id = null, $class = null)
@@ -283,8 +280,6 @@  discard block
 block discarded – undo
283 280
 
284 281
     /**
285 282
      *
286
-     * @param string $route
287
-     * @param mixed $id
288 283
      * @return string
289 284
      */
290 285
     public function ACEmbedForm($formId)
@@ -298,7 +293,6 @@  discard block
 block discarded – undo
298 293
 
299 294
     /**
300 295
      *
301
-     * @param string $target
302 296
      * @return string
303 297
      */
304 298
     public function ACImage($attributes)
@@ -308,7 +302,6 @@  discard block
 block discarded – undo
308 302
 
309 303
     /**
310 304
      *
311
-     * @param string $target
312 305
      * @return string
313 306
      */
314 307
     public function ACLazyImage($attributes)
@@ -322,7 +315,6 @@  discard block
 block discarded – undo
322 315
 
323 316
     /**
324 317
      *
325
-     * @param string $target
326 318
      * @return string
327 319
      */
328 320
     public function ACQrcode($attributes)
@@ -336,7 +328,6 @@  discard block
 block discarded – undo
336 328
 
337 329
     /**
338 330
      *
339
-     * @param string $target
340 331
      * @return string
341 332
      */
342 333
     public function ACMarkdown($attributes)
@@ -418,7 +409,6 @@  discard block
 block discarded – undo
418 409
 
419 410
     /**
420 411
      *
421
-     * @param mixed $model
422 412
      * @return string
423 413
      */
424 414
     public function ACString($var)
Please login to merge, or discard this patch.
lib/Ajde/Template/Parser/Xhtml.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -55,6 +55,9 @@
 block discarded – undo
55 55
         return $root;
56 56
     }
57 57
 
58
+    /**
59
+     * @param string $xml
60
+     */
58 61
     protected function _breakOutCdata($xml)
59 62
     {
60 63
         $patterns = [
Please login to merge, or discard this patch.
lib/Ajde/User.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -265,6 +265,9 @@
 block discarded – undo
265 265
         return $resetHash;
266 266
     }
267 267
 
268
+    /**
269
+     * @param string $hash
270
+     */
268 271
     public function sendResetMail($hash)
269 272
     {
270 273
         // @todo exception
Please login to merge, or discard this patch.
lib/Ajde/Component.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -53,6 +53,9 @@
 block discarded – undo
53 53
         return $url;
54 54
     }
55 55
 
56
+    /**
57
+     * @return string
58
+     */
56 59
     public function getFilename()
57 60
     {
58 61
         return $this->get('filename');
Please login to merge, or discard this patch.
lib/Ajde/Db.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -53,6 +53,9 @@
 block discarded – undo
53 53
         return $url;
54 54
     }
55 55
 
56
+    /**
57
+     * @return string
58
+     */
56 59
     public function getFilename()
57 60
     {
58 61
         return $this->get('filename');
Please login to merge, or discard this patch.