diff --git a/lib/Doctrine/Import/Xml.php b/lib/Doctrine/Import/Xml.php index 5961c5629..1ef479d57 100644 --- a/lib/Doctrine/Import/Xml.php +++ b/lib/Doctrine/Import/Xml.php @@ -78,11 +78,11 @@ class Doctrine_Import_Xml $xmlObj = simplexml_load_file($schema); - /* Go through all tables... */ + // Go through all tables... foreach ($xmlObj->table as $table) { print 'table: '. $table->name . "\n"; - /* Go through all columns... */ + // Go through all columns... foreach ($table->declaration->field as $field) { print ' field: '. $field->name . "\n";