Completed
Push — master ( 409900...f20dfb )
by Jean-Christophe
03:24
created
Ajax/semantic/html/base/HtmlSemDoubleElement.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,6 +19,7 @@  discard block
 block discarded – undo
19 19
 	/**
20 20
 	 * {@inheritDoc}
21 21
 	 * @see \Ajax\common\html\HtmlSingleElement::setSize()
22
+	 * @param string $size
22 23
 	 */
23 24
 	public function setSize($size){
24 25
 		return $this->addToPropertyCtrl("class", $size, Size::getConstants());
@@ -26,7 +27,7 @@  discard block
 block discarded – undo
26 27
 
27 28
 	/**
28 29
 	 * show it is currently unable to be interacted with
29
-	 * @return \Ajax\semantic\html\elements\HtmlSemDoubleElement
30
+	 * @return HtmlSemDoubleElement
30 31
 	 */
31 32
 	public function setDisabled(){
32 33
 		return $this->addToProperty("class", "disabled");
Please login to merge, or discard this patch.
Ajax/semantic/html/elements/HtmlLabel.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@
 block discarded – undo
20 20
 	protected $_tabsType="tabs";
21 21
 	protected $stacked="";
22 22
 
23
+	/**
24
+	 * @param string $identifier
25
+	 */
23 26
 	public function __construct($identifier, $tagName="ul") {
24 27
 		parent::__construct($identifier, $tagName);
25 28
 		$this->_template="<%tagName% %properties%>%tabs%</%tagName%>%content%";
Please login to merge, or discard this patch.