Code Duplication    Length = 4-4 lines in 2 locations

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

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

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

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