Commit a36461c8 authored by nicobn's avatar nicobn

/* */ to // style comments in methods

parent 56e2d362
...@@ -78,11 +78,11 @@ class Doctrine_Import_Xml ...@@ -78,11 +78,11 @@ class Doctrine_Import_Xml
$xmlObj = simplexml_load_file($schema); $xmlObj = simplexml_load_file($schema);
/* Go through all tables... */ // Go through all tables...
foreach ($xmlObj->table as $table) { foreach ($xmlObj->table as $table) {
print 'table: '. $table->name . "\n"; print 'table: '. $table->name . "\n";
/* Go through all columns... */ // Go through all columns...
foreach ($table->declaration->field as $field) { foreach ($table->declaration->field as $field) {
print ' field: '. $field->name . "\n"; print ' field: '. $field->name . "\n";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment