Completed
Push — master ( 735cac...641d44 )
by Jean-Christophe
04:20
created
Ajax/semantic/html/elements/HtmlButton.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 	/**
38 38
 	 * Set the button value
39 39
 	 * @param string $value
40
-	 * @return \Ajax\semantic\html\HtmlButton
40
+	 * @return HtmlButton
41 41
 	 */
42 42
 	public function setValue($value) {
43 43
 		$this->content=$value;
@@ -46,8 +46,8 @@  discard block
 block discarded – undo
46 46
 
47 47
 	/**
48 48
 	 * define the button style
49
-	 * @param string|int $cssStyle
50
-	 * @return \Ajax\semantic\html\HtmlButton default : ""
49
+	 * @param string $cssStyle
50
+	 * @return HtmlButton default : ""
51 51
 	 */
52 52
 	public function setStyle($cssStyle) {
53 53
 		return $this->addToProperty("class", $cssStyle);
Please login to merge, or discard this patch.
Ajax/semantic/html/base/traits/IconTrait.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -7,6 +7,10 @@
 block discarded – undo
7 7
 trait IconTrait {
8 8
 	private $_hasIcon=false;
9 9
 
10
+	/**
11
+	 * @param string $name
12
+	 * @param string $value
13
+	 */
10 14
 	protected abstract function addToPropertyCtrl($name, $value, $typeCtrl);
11 15
 	public abstract function addContent($content,$before=false);
12 16
 
Please login to merge, or discard this patch.
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.