Coding rules.
authorFlorent Bruneau <florent.bruneau@polytechnique.org>
Sat, 6 Nov 2010 10:59:16 +0000 (11:59 +0100)
committerFlorent Bruneau <florent.bruneau@polytechnique.org>
Sat, 6 Nov 2010 10:59:16 +0000 (11:59 +0100)
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
classes/plfilter.php

index f36a803..5dd77e6 100644 (file)
@@ -228,8 +228,9 @@ abstract class PFC_NChildren implements PlFilterCondition
     public function export()
     {
         $export = array();
-        foreach ($this->children as $child)
+        foreach ($this->children as $child) {
             $export[] = $child->export();
+        }
         return array('children' => $export);
     }
 }