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

@@ 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