/* */ to // style comments in methods
This commit is contained in:
parent
56e2d36281
commit
a36461c825
@ -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";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user