Code Duplication    Length = 4-4 lines in 2 locations

Ajax/semantic/html/content/table/HtmlTR.php 1 location

@@ 97-100 (lines=4) @@
94
		}
95
		$count=\min(\sizeof($values), $count);
96
97
		for($i=0; $i < $count; $i++) {
98
			$cell=$this->content[$i];
99
			$callback($cell,$values[$i]);
100
		}
101
		return $this;
102
	}
103

Ajax/semantic/html/content/table/HtmlTableContent.php 1 location

@@ 157-160 (lines=4) @@
154
155
		$count=\min(\sizeof($values), $count);
156
157
		for($i=0; $i < $count; $i++) {
158
			$row=$this->content[$i];
159
			$callback($row,$values[$i]);
160
		}
161
		return $this;
162
	}
163