Completed
Push — master ( 65ba54...58bc13 )
by Olivier
11s
created
lib/Model/Circle.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -202,8 +202,9 @@
 block discarded – undo
202 202
 		$circle->setDescription($arr['description']);
203 203
 		$circle->setType($arr['type']);
204 204
 		$circle->setCreation($arr['creation']);
205
-		if (key_exists('count', $arr))
206
-			$circle->setCount($arr['count']);
205
+		if (key_exists('count', $arr)) {
206
+					$circle->setCount($arr['count']);
207
+		}
207 208
 
208 209
 		$owner = new Member();
209 210
 		$owner->setUserId($arr['owner']);
Please login to merge, or discard this patch.