Completed
Pull Request — master (#16)
by
unknown
02:56
created
php/JodelAccount.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -385,6 +385,9 @@
 block discarded – undo
385 385
         }       
386 386
     }
387 387
 
388
+    /**
389
+     * @param Location $location
390
+     */
388 391
     function registerAccount($location) {
389 392
         $accountCreator = new CreateUser();
390 393
         $accountCreator->setLocation($location);
Please login to merge, or discard this patch.
php/View.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -204,6 +204,9 @@
 block discarded – undo
204 204
 		return array("image_url" => $captcha['image_url'], "key" => $captcha['key']);
205 205
 	}
206 206
 
207
+	/**
208
+	 * @param string $deviceUid
209
+	 */
207 210
 	function showCaptcha($accessToken, $deviceUid)
208 211
 	{
209 212
 		$accountCreator = new GetCaptcha();
Please login to merge, or discard this patch.
php/Requests/GetPosts.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -11,6 +11,9 @@  discard block
 block discarded – undo
11 11
     public $url;
12 12
 
13 13
         
14
+    /**
15
+     * @param string $url
16
+     */
14 17
     function setUrl ($url)
15 18
     {
16 19
             $this->url = $url;
@@ -21,6 +24,9 @@  discard block
 block discarded – undo
21 24
         return $this->url;
22 25
     }
23 26
 		
27
+    /**
28
+     * @param string $lastPostId
29
+     */
24 30
     function setLastPostId ($lastPostId)
25 31
     {
26 32
 			$this->lastPostId = $lastPostId;
Please login to merge, or discard this patch.
php/jodel-web.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -37,6 +37,9 @@  discard block
 block discarded – undo
37 37
 	die();
38 38
 }
39 39
 
40
+/**
41
+ * @param string $msg
42
+ */
40 43
 function user_log($msg)
41 44
 {
42 45
     $log  = $msg . PHP_EOL;
@@ -51,6 +54,9 @@  discard block
 block discarded – undo
51 54
     return (isset($matches[0])) ? true : false;
52 55
 }
53 56
 
57
+/**
58
+ * @param string $property
59
+ */
54 60
 function configPropertyExists($config, $property)
55 61
 {
56 62
     if(!array_key_exists($property, $config) || !isset($config[$property]) || $config[$property] == '' || $config[$property] == 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')
Please login to merge, or discard this patch.