1
0
mirror of synced 2025-01-07 09:37:11 +03:00

/* */ to // style comments in methods

This commit is contained in:
nicobn 2007-06-25 16:56:46 +00:00
parent 56e2d36281
commit a36461c825

View File

@ -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";