Completed
Push — master ( 63bf24...09bbc1 )
by Jean-Christophe
03:16
created
Ajax/bootstrap/html/content/HtmlGridRow.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -14,6 +14,10 @@  discard block
 block discarded – undo
14 14
  */
15 15
 class HtmlGridRow extends HtmlDoubleElement {
16 16
 	private $cols;
17
+
18
+	/**
19
+	 * @param string $identifier
20
+	 */
17 21
 	public function __construct($identifier){
18 22
 		parent::__construct($identifier,"div");
19 23
 		$this->setProperty("class", "row");
@@ -41,6 +45,9 @@  discard block
 block discarded – undo
41 45
 		return $result;
42 46
 	}
43 47
 	
48
+	/**
49
+	 * @param integer $offset
50
+	 */
44 51
 	public function getColAt($offset,$force=true){
45 52
 		$result=null;
46 53
 		foreach ($this->cols as $col){
Please login to merge, or discard this patch.
Ajax/bootstrap/html/HtmlGridsystem.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@  discard block
 block discarded – undo
16 16
 class HtmlGridSystem extends HtmlDoubleElement {
17 17
 	private $rows;
18 18
 	
19
+	/**
20
+	 * @param string $identifier
21
+	 */
19 22
 	public function __construct($identifier,$numRows=1){
20 23
 		parent::__construct($identifier,"div");
21 24
 		$this->setProperty("class", "container");
@@ -46,6 +49,9 @@  discard block
 block discarded – undo
46 49
 		return $result;
47 50
 	}
48 51
 	
52
+	/**
53
+	 * @param integer $numRows
54
+	 */
49 55
 	public function setNumRows($numRows){
50 56
 		for($i=sizeof($this->rows);$i<$numRows;$i++){
51 57
 			$this->addRow();
Please login to merge, or discard this patch.