1
0
mirror of synced 2024-12-13 14:56:01 +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);
/* 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";