From a36461c8251ac5323e7d01c8e4029e6c1942c174 Mon Sep 17 00:00:00 2001 From: nicobn Date: Mon, 25 Jun 2007 16:56:46 +0000 Subject: [PATCH] /* */ to // style comments in methods --- lib/Doctrine/Import/Xml.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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";