Completed
Push — master ( 751bb4...735cac )
by Jean-Christophe
04:44
created
Ajax/semantic/traits/SemanticComponentsTrait.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -57,6 +57,9 @@  discard block
 block discarded – undo
57 57
 		return $this->addComponent(new Accordion($this->js), $attachTo, $params);
58 58
 	}
59 59
 
60
+	/**
61
+	 * @param string $attachTo
62
+	 */
60 63
 	public function sticky($attachTo=NULL, $params=NULL) {
61 64
 		return $this->addComponent(new Sticky($this->js), $attachTo, $params);
62 65
 	}
@@ -65,14 +68,23 @@  discard block
 block discarded – undo
65 68
 		return $this->addComponent(new Checkbox($this->js), $attachTo, $params);
66 69
 	}
67 70
 
71
+	/**
72
+	 * @param string $attachTo
73
+	 */
68 74
 	public function rating($attachTo=NULL, $params=NULL) {
69 75
 		return $this->addComponent(new Rating($this->js), $attachTo, $params);
70 76
 	}
71 77
 
78
+	/**
79
+	 * @param string $attachTo
80
+	 */
72 81
 	public function progress($attachTo=NULL, $params=NULL) {
73 82
 		return $this->addComponent(new Progress($this->js), $attachTo, $params);
74 83
 	}
75 84
 
85
+	/**
86
+	 * @param string $attachTo
87
+	 */
76 88
 	public function search($attachTo=NULL, $params=NULL) {
77 89
 		return $this->addComponent(new Search($this->js), $attachTo, $params);
78 90
 	}
Please login to merge, or discard this patch.