Completed
Push — master ( 541276...03d1b2 )
by Jean-Christophe
03:16
created
Ajax/common/html/html5/HtmlCollection.php 1 patch
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,9 +45,9 @@
 block discarded – undo
45 45
 	 * @return \Ajax\common\html\HtmlDoubleElement
46 46
 	 */
47 47
 	public function getItem($index) {
48
-		if (is_int($index))
49
-			return $this->content[$index];
50
-		else {
48
+		if (is_int($index)) {
49
+					return $this->content[$index];
50
+		} else {
51 51
 			$elm=$this->getElementById($index, $this->content);
52 52
 			return $elm;
53 53
 		}
Please login to merge, or discard this patch.